@@ -14,6 +14,7 @@ | |||||
* [Server] Added items dictionary to client session in order to share data across interceptors as along as the session exists. | * [Server] Added items dictionary to client session in order to share data across interceptors as along as the session exists. | ||||
* [Server] Exposed CONNECT packet properties in Application Message and Subscription interceptor. | * [Server] Exposed CONNECT packet properties in Application Message and Subscription interceptor. | ||||
* [Server] Fixed: Sending Large packets with AspnetCore based connection throws System.ArgumentException. | * [Server] Fixed: Sending Large packets with AspnetCore based connection throws System.ArgumentException. | ||||
* [Server] Fixed wrong usage of socket option _NoDelay_. | |||||
* [MQTTnet.Server] Added REST API for publishing basic messages. | * [MQTTnet.Server] Added REST API for publishing basic messages. | ||||
</releaseNotes> | </releaseNotes> | ||||
<copyright>Copyright Christian Kratky 2016-2019</copyright> | <copyright>Copyright Christian Kratky 2016-2019</copyright> | ||||
@@ -61,6 +61,8 @@ namespace MQTTnet.Implementations | |||||
_socket = new Socket(_addressFamily, SocketType.Stream, ProtocolType.Tcp); | _socket = new Socket(_addressFamily, SocketType.Stream, ProtocolType.Tcp); | ||||
// Usage of socket options is described here: https://docs.microsoft.com/en-us/dotnet/api/system.net.sockets.socket.setsocketoption?view=netcore-2.2 | |||||
if (_options.ReuseAddress) | if (_options.ReuseAddress) | ||||
{ | { | ||||
_socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); | _socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); | ||||
@@ -68,7 +70,7 @@ namespace MQTTnet.Implementations | |||||
if (_options.NoDelay) | if (_options.NoDelay) | ||||
{ | { | ||||
_socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.NoDelay, true); | |||||
_socket.SetSocketOption(SocketOptionLevel.Tcp, SocketOptionName.NoDelay, true); | |||||
} | } | ||||
_socket.Bind(_localEndPoint); | _socket.Bind(_localEndPoint); | ||||