* Process pipelined HTTP requests using the specified input and output
* streams.
*
+ * @param socketWrapper Socket from which the HTTP requests will be read
+ * and the HTTP responses will be written.
+ *
* @throws IOException error during an I/O operation
*/
@Override
// Error flag
error = false;
- comet = false;
keepAlive = true;
+ comet = false;
int keepAliveLeft = maxKeepAliveRequests;
long soTimeout = endpoint.getSoTimeout();
* Process pipelined HTTP requests using the specified input and output
* streams.
*
+ * @param socketWrapper Socket from which the HTTP requests will be read
+ * and the HTTP responses will be written.
+ *
* @throws IOException error during an I/O operation
*/
@Override
/**
- * Process pipelined HTTP requests on the specified socket.
+ * Process pipelined HTTP requests using the specified input and output
+ * streams.
*
* @param socketWrapper Socket from which the HTTP requests will be read
* and the HTTP responses will be written.