aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/Net/EndPointListener.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SocketHttpListener/Net/EndPointListener.cs')
-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.