diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2019-02-27 19:23:31 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-27 19:23:31 +0300 |
| commit | 3769453541d8e3da45a9bf40ef0e9da6268bebdc (patch) | |
| tree | 36b4c42a65b666536f34cd9f8da6b6e54b8a8fc8 /RSSDP/SsdpDeviceLocator.cs | |
| parent | 8c2af50170ea2a7964a6ad40bbe60026cfa625b0 (diff) | |
| parent | 7429c07c05ad12fbacef7952574edd75c294eb8a (diff) | |
Merge pull request #978 from fasheng/fix-dlna-multiple-interfaces
Fix DLNA for multiple interfaces on linux
Diffstat (limited to 'RSSDP/SsdpDeviceLocator.cs')
| -rw-r--r-- | RSSDP/SsdpDeviceLocator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RSSDP/SsdpDeviceLocator.cs b/RSSDP/SsdpDeviceLocator.cs index 128bdfcbb..e17e14c1a 100644 --- a/RSSDP/SsdpDeviceLocator.cs +++ b/RSSDP/SsdpDeviceLocator.cs @@ -354,7 +354,7 @@ namespace Rssdp.Infrastructure var message = BuildMessage(header, values); - return _CommunicationsServer.SendMulticastMessage(message, cancellationToken); + return _CommunicationsServer.SendMulticastMessage(message, null, cancellationToken); } private void ProcessSearchResponseMessage(HttpResponseMessage message, IpAddressInfo localIpAddress) |
