1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00

fix deadlock

This commit is contained in:
lxsang 2018-10-14 11:31:05 +02:00
parent 64e912ab6e
commit b0bbff1556

View File

@ -190,7 +190,7 @@ void *accept_request(void *data)
if (server_config.usessl == 1 && client->status == 0)
{
if(client->attempt > MAX_ATTEMPT) return task;
LOG("Atttempt %d\n", client->attempt);
//LOG("Atttempt %d\n", client->attempt);
if (SSL_accept((SSL *)client->ssl) == -1)
{
client->attempt++;