diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:55:02 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:55:02 -0500 |
| commit | 8c8f2aaba5e4bf573efe2730b5450a8c07abe1b3 (patch) | |
| tree | 34ed236696c0400c1d209985fe6450ac8adc8360 /RSSDP/ISsdpCommunicationsServer.cs | |
| parent | 598f1cf2bddebbd167ed70470e54a2504ca4c0a7 (diff) | |
first pass at binding to multiple network addresses
Diffstat (limited to 'RSSDP/ISsdpCommunicationsServer.cs')
| -rw-r--r-- | RSSDP/ISsdpCommunicationsServer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/RSSDP/ISsdpCommunicationsServer.cs b/RSSDP/ISsdpCommunicationsServer.cs index 462f33fe6..eea5e0ed6 100644 --- a/RSSDP/ISsdpCommunicationsServer.cs +++ b/RSSDP/ISsdpCommunicationsServer.cs @@ -46,7 +46,8 @@ namespace Rssdp.Infrastructure /// </summary> /// <param name="messageData">A byte array containing the data to send.</param> /// <param name="destination">A <see cref="IpEndPointInfo"/> representing the destination address for the data. Can be either a multicast or unicast destination.</param> - Task SendMessage(byte[] messageData, IpEndPointInfo destination); + /// <param name="fromLocalIpAddress">A <see cref="IpEndPointInfo"/> The local ip address to send from, or .Any if sending from all available</param> + Task SendMessage(byte[] messageData, IpEndPointInfo destination, IpAddressInfo fromLocalIpAddress); /// <summary> /// Sends a message to the SSDP multicast address and port. |
