Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 18 additions & 7 deletions SocketEngine/AsyncSocketServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,25 @@ private IAppSession ProcessNewClient(Socket client, SslProtocols security)
}

ISocketSession socketSession;
IAppSession session=null;
try
{
if (security == SslProtocols.None)
socketSession = new AsyncSocketSession(client, socketEventArgsProxy);
else
socketSession = new AsyncStreamSocketSession(client, security, socketEventArgsProxy);

if (security == SslProtocols.None)
socketSession = new AsyncSocketSession(client, socketEventArgsProxy);
else
socketSession = new AsyncStreamSocketSession(client, security, socketEventArgsProxy);

var session = CreateSession(client, socketSession);

session = CreateSession(client, socketSession);
}
catch
{
socketEventArgsProxy.Reset();
this.m_ReadWritePool.Push(socketEventArgsProxy);
AppServer.AsyncRun(client.SafeClose);
return null;
}


if (session == null)
{
socketEventArgsProxy.Reset();
Expand Down