Loading server/connection.c +3 −5 Original line number Diff line number Diff line Loading @@ -171,16 +171,14 @@ void ap_lingering_close(conn_rec *c) * client has ACKed our FIN and/or has stopped sending us data. */ if (c->aborted) { /* Send any leftover data to the client, but never try to again */ ap_flush_conn(c); if (c->aborted) { apr_close_socket(c->client_socket); return; } /* Send any leftover data to the client, but never try to again */ ap_flush_conn(c); /* Shut down the socket for write, which will send a FIN * to the peer. */ Loading Loading
server/connection.c +3 −5 Original line number Diff line number Diff line Loading @@ -171,16 +171,14 @@ void ap_lingering_close(conn_rec *c) * client has ACKed our FIN and/or has stopped sending us data. */ if (c->aborted) { /* Send any leftover data to the client, but never try to again */ ap_flush_conn(c); if (c->aborted) { apr_close_socket(c->client_socket); return; } /* Send any leftover data to the client, but never try to again */ ap_flush_conn(c); /* Shut down the socket for write, which will send a FIN * to the peer. */ Loading