diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-13 01:42:12 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-13 01:42:12 -0400 |
| commit | 6623fe10ee1f74cafc8fadf8caa531178a0b26fe (patch) | |
| tree | 357930371449d41e97b44a6182767a02415ca79f /SocketHttpListener | |
| parent | f98e42fc3b03640313ab520a0028afa60ccc2ebe (diff) | |
update server restart
Diffstat (limited to 'SocketHttpListener')
| -rw-r--r-- | SocketHttpListener/Net/EndPointListener.cs | 9 |
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. |
