Added SetReuseAddress() method to WebSocketServer

This commit is contained in:
Jonas Hovgaard 2014-08-25 21:03:08 +02:00
parent 11b26040b8
commit e0e21a9e6c

View File

@ -840,6 +840,14 @@ namespace WebSocketSharp.Server
_state = ServerState.Stop;
}
/// <summary>
/// Allows the server to be bound to an address that is already in use.
/// </summary>
public void SetReuseAddress()
{
_listener.Server.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, 1);
}
#endregion
}