зеркало из https://github.com/Azure/DotNetty.git
Avoid throw SocketException(10057) in TcpSocketChannel.DoClose when the Socket is not connected (#508)
This commit is contained in:
Родитель
13f0094266
Коммит
d65154c3c4
|
@ -170,9 +170,12 @@ namespace DotNetty.Transport.Channels.Sockets
|
|||
{
|
||||
try
|
||||
{
|
||||
if (this.TryResetState(StateFlags.Open | StateFlags.Active))
|
||||
if (this.TryResetState(StateFlags.Open))
|
||||
{
|
||||
this.Socket.Shutdown(SocketShutdown.Both);
|
||||
if (this.TryResetState(StateFlags.Active))
|
||||
{
|
||||
this.Socket.Shutdown(SocketShutdown.Both);
|
||||
}
|
||||
this.Socket.Dispose();
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче