[ New proposals should be added at the end of the list ]
-* Harmonize with HTTP java.io code. Otherwise the socket is not closed. http://people.apache.org/~jfclere/patches/AjpPro.patch
- +1: jfclere, fhanik, remm, pero, jim
- -1:
-
* Fix BZ 43588 - hard coded 127.0.0.1 for localhost
http://issues.apache.org/bugzilla/attachment.cgi?id=21039&action=view
+1:
*
* @throws IOException error during an I/O operation
*/
- public boolean process(Socket socket)
+ public void process(Socket socket)
throws IOException {
RequestInfo rp = request.getRequestProcessor();
rp.setStage(org.apache.coyote.Constants.STAGE_PARSE);
input = null;
output = null;
- return true;
-
}
((ActionHook) processor).action(ActionCode.ACTION_START, null);
}
- return processor.process(socket);
+ processor.process(socket);
+ return false;
} catch(java.net.SocketException e) {
// SocketExceptions are normal
<subsection name="Coyote">
<changelog>
<fix>
+ Harmonize with HTTP java.io code. Otherwise the socket is not closed.
+ </fix>
+ <fix>
In the APR connector, start accepting connections after fully starting
the connector, to prevent possible exceptions due to non initialized fields. (remm)
</fix>