aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Net/SocketFactory.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-11-10 16:23:03 -0500
committerGitHub <noreply@github.com>2017-11-10 16:23:03 -0500
commitb51ed9621fb1c98b891ce5f2fa6fa255a59ad6af (patch)
tree6ee8563d163fbc48d6c242a03e37d50819f56176 /Emby.Server.Implementations/Net/SocketFactory.cs
parente86cd223c6c79484f5c9ca825fac81c07a3c92cb (diff)
parent711f58808447765b51367cb4a60581f8b8bb65ff (diff)
Merge pull request #3011 from MediaBrowser/dev
3.2.36.7
Diffstat (limited to 'Emby.Server.Implementations/Net/SocketFactory.cs')
-rw-r--r--Emby.Server.Implementations/Net/SocketFactory.cs12
1 files changed, 11 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Net/SocketFactory.cs b/Emby.Server.Implementations/Net/SocketFactory.cs
index f78fbdfd7..bdae1728f 100644
--- a/Emby.Server.Implementations/Net/SocketFactory.cs
+++ b/Emby.Server.Implementations/Net/SocketFactory.cs
@@ -196,8 +196,18 @@ namespace Emby.Server.Implementations.Net
try
{
- //retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, true);
+ // seeing occasional exceptions thrown on qnap
+ // System.Net.Sockets.SocketException (0x80004005): Protocol not available
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
+ }
+ catch (SocketException)
+ {
+
+ }
+
+ try
+ {
+ //retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, true);
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, multicastTimeToLive);
var localIp = IPAddress.Any;