mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Fix d/c
This commit is contained in:
parent
b75121b54f
commit
9f26f1bd59
1 changed files with 5 additions and 17 deletions
|
@ -125,28 +125,16 @@ namespace HISP.Server
|
|||
{
|
||||
// HI1 Packets are terminates by 0x00 so we have to read until we receive that terminator
|
||||
|
||||
if (isDisconnecting || ClientSocket == null)
|
||||
return;
|
||||
|
||||
if(ClientSocket.Poll(0, SelectMode.SelectRead))
|
||||
if (isDisconnecting ||
|
||||
ClientSocket == null ||
|
||||
ClientSocket.Poll(0, SelectMode.SelectRead) ||
|
||||
!ClientSocket.Connected ||
|
||||
e.SocketError != SocketError.Success)
|
||||
{
|
||||
Disconnect();
|
||||
return;
|
||||
}
|
||||
|
||||
if (!ClientSocket.Connected)
|
||||
{
|
||||
Disconnect();
|
||||
return;
|
||||
}
|
||||
|
||||
if (e.SocketError != SocketError.Success)
|
||||
{
|
||||
Disconnect();
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
int availble = e.BytesTransferred;
|
||||
if (availble >= 1)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue