-*- coding: utf-8 -*-
Changes with Apache 2.2.18
+ *) mod_ssl: Correctly read full lines in input filter when the line is
+ incomplete during first read. PR 50481. [Ruediger Pluem]
+
*) mod_autoindex: Merge IndexOptions from server to directory context when
the directory has no mod_autoindex directives. PR 47766. [Eric Covener]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * mod_ssl: Correctly read full lines in input filter when the line is
- incomplete during first read. PR 50481.
- Trunk version of patch:
- http://svn.apache.org/viewcvs.cgi?rev=1051468&view=rev
- http://svn.apache.org/viewcvs.cgi?rev=1058133&view=rev
- http://svn.apache.org/viewcvs.cgi?rev=1059037&view=rev
- Backport version for 2.2.x of patch:
- Trunk version of patch works
- +1: rpluem, jorton, jim
-
* prefork: Update MPM state in children; implement fast exit from
connection loop via ap_graceful_stop_signalled. PR 41743.
Trunk patch: http://svn.apache.org/viewvc?rev=1068389&view=rev
status = ssl_io_input_read(inctx, buf + offset, &tmplen);
if (status != APR_SUCCESS) {
+ if (APR_STATUS_IS_EAGAIN(status) && (*len > 0)) {
+ /* Save the part of the line we already got */
+ char_buffer_write(&inctx->cbuf, buf, *len);
+ }
return status;
}