Browse Source

Retry successful writes immediately

dynamic-accesslists
Dirk Engling 4 years ago
parent
commit
2f228c27c2
  1. 3
      opentracker.c

3
opentracker.c

@ -218,6 +218,9 @@ static void handle_write( const int64 sock ) { @@ -218,6 +218,9 @@ static void handle_write( const int64 sock ) {
if( res == -3 )
break;
if( !cookie->batch[i].bytesleft )
continue;
if( res == -1 || res > 0 || i < cookie->batches - 1 )
return;
}

Loading…
Cancel
Save