aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-13 01:42:12 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-13 01:42:12 -0400
commit6623fe10ee1f74cafc8fadf8caa531178a0b26fe (patch)
tree357930371449d41e97b44a6182767a02415ca79f /SocketHttpListener
parentf98e42fc3b03640313ab520a0028afa60ccc2ebe (diff)
update server restart
Diffstat (limited to 'SocketHttpListener')
-rw-r--r--SocketHttpListener/Net/EndPointListener.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/SocketHttpListener/Net/EndPointListener.cs b/SocketHttpListener/Net/EndPointListener.cs
index 2b1479e42..48c0ae7cb 100644
--- a/SocketHttpListener/Net/EndPointListener.cs
+++ b/SocketHttpListener/Net/EndPointListener.cs
@@ -93,6 +93,15 @@ namespace SocketHttpListener.Net
}
}
+ try
+ {
+ sock.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
+ }
+ catch (SocketException)
+ {
+ // This is not supported on all operating systems (qnap)
+ }
+
sock.Bind(endpoint);
// This is the number TcpListener uses.