aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/DeviceAvailableEventArgs.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-04-25 18:51:11 +0200
committerJoshua M. Boniface <joshua@boniface.me>2021-04-29 14:56:30 -0400
commitcf0da1de8601b1f36ba6a0e1aacfa7f987d0f438 (patch)
tree2815ad9a702a2f93d0f709a8db0f92ef18595a99 /RSSDP/DeviceAvailableEventArgs.cs
parent093510ae58fe176e9e9790295d75befb18c23e6e (diff)
Merge pull request #5826 from BaronGreenback/ssdpFix
PlayTo Fix: Use external ip not internal interface (cherry picked from commit f4a59c92e6087d09b20249aac9b7181cc7bb23ba) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
Diffstat (limited to 'RSSDP/DeviceAvailableEventArgs.cs')
-rw-r--r--RSSDP/DeviceAvailableEventArgs.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/RSSDP/DeviceAvailableEventArgs.cs b/RSSDP/DeviceAvailableEventArgs.cs
index b7d22a7df..04b14c4dc 100644
--- a/RSSDP/DeviceAvailableEventArgs.cs
+++ b/RSSDP/DeviceAvailableEventArgs.cs
@@ -8,7 +8,7 @@ namespace Rssdp
/// </summary>
public sealed class DeviceAvailableEventArgs : EventArgs
{
- public IPAddress LocalIpAddress { get; set; }
+ public IPAddress RemoteIpAddress { get; set; }
private readonly DiscoveredSsdpDevice _DiscoveredDevice;