diff options
| author | Bond_009 <bond.009@outlook.com> | 2022-03-10 20:51:22 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2022-03-10 20:51:22 +0100 |
| commit | 470d175f32aaae980cd301e6e5fc4b5a1630576d (patch) | |
| tree | e7d2a17a0f0cfa4698b86841180773d593d76280 | |
| parent | 1d018c557599a544ad2f8193ce7cc0a6a6f1260a (diff) | |
ExclusiveAddressUse: cheated by the docs
| -rw-r--r-- | Emby.Server.Implementations/Net/SocketFactory.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Net/SocketFactory.cs b/Emby.Server.Implementations/Net/SocketFactory.cs index 58fa14948..21795c8f8 100644 --- a/Emby.Server.Implementations/Net/SocketFactory.cs +++ b/Emby.Server.Implementations/Net/SocketFactory.cs @@ -80,6 +80,8 @@ namespace Emby.Server.Implementations.Net var retVal = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); + retVal.ExclusiveAddressUse = false; + try { // seeing occasional exceptions thrown on qnap |
