]> granicus.if.org Git - apache/history - modules/http/http_filters.c
Extend the socket callbacks in event to allow a timeout on the I/O callback.
[apache] / modules / http / http_filters.c
2013-12-30 Justin ErenkrantzAdd directives to control two protocol options:
2013-11-13 William A. Rowe JrUse a distinguishing APLOGNO for unk t-e with read...
2013-11-12 Jim Jagielski80 rule
2013-11-12 William A. Rowe JrWrap at 80 still, here at httpd project
2013-11-04 Jim JagielskiPR 55475: Detect incomplete body in HTTP input filter...
2013-10-07 Chris DarrochCorrect typo in comments for ap_map_http_request_error().
2013-10-03 Rainer Jungcore: Add missing Reason-Phrase in HTTP response headers.
2013-09-19 Jim Jagielskidraft-ietf-httpbis-p1-messaging-23 fixes regarding...
2013-09-17 Jim Jagielskirevert 1524161 for the time being
2013-09-17 Jim JagielskiRFC2616 issue
2013-06-19 Graham LeggettUpdate the log message number.
2013-05-23 Graham LeggettEnsure that any meta buckets are stripped while parsing...
2013-05-22 Graham Leggettcore: Use a matching counter type.
2013-05-22 Graham Leggettcore: Make sure we allow unconstrained bodies from...
2013-05-21 Graham Leggettcore: Remove apr_brigade_flatten(), buffering and dupli...
2013-05-15 Graham Leggettcore: Stop ap_finalize_request_protocol() and ap_get_cl...
2013-05-14 Graham Leggettcore: Stop the HTTP_IN filter from attempting to write...
2013-05-07 Graham LeggettFix spelling mistake, no code change.
2013-01-03 Guenter KnaufStupid CodeWarrior compiler cant take vars with struct...
2012-12-30 Stefan Fritschadd log tags missing in r1426877
2012-12-30 Stefan FritschAdd an option to enforce stricter HTTP conformance
2012-12-10 Christophe JailletAvoid unnecessary %s substitution
2011-12-18 Stefan FritschVarious code cleanup to avoid compiler, cppcheck, or...
2011-12-02 Stefan FritschAdd lots of unique tags to error log messages
2011-11-21 Stefan FritschDowngrade some more error messages about broken client...
2011-09-23 Stefan FritschMore cleanup: Expand tabs and some more indentation...
2011-09-23 Jim JagielskiCleanup effort in prep for GA push:
2011-08-20 Stefan FritschSimplify some overly complicated code using apr_brigade...
2011-07-05 Stefan FritschFix a few warnings about use of uninitialized values.
2011-06-13 Stefan FritschAvoid some memory allocations by using apr_table_setn...
2011-06-06 Stefan FritschIntroduce ap_(get|set)_core_module_config() functions...
2011-05-14 Stefan FritschIf chunked encoding / content-length are corrupt, we...
2010-12-30 Ruediger Pluem* Silence compiler warning
2010-12-29 Igor GalićIn comments: s@ XX @ XXX: @ so they can actually be...
2010-11-14 Nick KewReturn 400 not 503 if we have to abort due to malformed...
2010-07-20 Nick KewFix processing of long chunk extensions
2010-07-11 Stefan FritschImprove trace logging of sent response:
2010-06-20 Stefan FritschMore trace logging
2010-06-06 Stefan Fritsch- Be less verbose at levels INFO and DEBUG in mod_proxy...
2010-06-06 Stefan FritschUse the new APLOG_USE_MODULE/AP_DECLARE_MODULE macros...
2010-04-26 Eric CovenerUse the more specific 408 (timed out) instead of a...
2010-04-25 Eric CovenerPR49167, unexpected 413 and double-errordoc during...
2009-12-08 Nick KewDon't keepalive when we send a non-100 response while...
2009-11-19 Jeff Trawickfix or complain about some invalid errno references
2009-10-04 Stefan FritschMake sure to not destroy bucket brigades that have...
2009-09-01 Paul QuernaInitialize len to 0, since for some logic paths it...
2009-08-28 Jim JagielskiOK, might as well finish this... Allow ServerTokens Off
2009-07-09 Ruediger Pluem* Return APR_EOF if request body is shorter than the...
2009-04-27 Jeff Trawickdon't use literal '100' for HTTP_CONTINUE (searchability)
2009-01-30 Roy T. FieldingDisabled DefaultType directive and removed ap_default_t...
2009-01-08 Eric CovenerTranslate locally generated "100-Continue" message to
2008-12-05 Paul QuernaRemove X-Pad work around.
2008-12-01 Eric CovenerTo be safe, consume the entire brigade after processing...
2008-09-08 Ruediger Pluem* Fix compiler warning (missing sentinel in function...
2008-09-08 Nick KewRelax checks on HTTP Response status line from a backend.
2008-05-27 Ruediger Pluem* mod_proxy_http.c
2008-05-23 Greg AmesThe response to the TRACE method is partially garbled...
2008-05-19 Ruediger Pluem* Only send 100-continue if the status code so far...
2008-04-11 Graham LeggettMove the KeptBodySize directive, kept_body filters...
2008-04-09 Graham LeggettAdd a function to the http filters that is able to...
2008-04-08 Ruediger Pluem* In the case that we fail to read the response line...
2008-04-07 Paul QuernaRemove all references to CORE_PRIVATE.
2008-04-03 Jim Jagielskiclose PR 44381
2008-02-18 Nick Kewhttp_filters: Don't send 100-continue when 4xx is due
2008-01-12 Nick KewDon't add bogus duplicate Content-Language header entries.
2008-01-09 Jim Jagielskibelt and suspenders
2008-01-09 Nick Kewhttp_filters: make sure we get last byte of actual...
2008-01-08 Ruediger Pluem* Saveguard ourselves against underflows
2008-01-08 Ruediger Pluem* Address two edge cases:
2008-01-07 Ruediger Pluem* HTTP error codes are int's not apr_status_t's.
2008-01-07 Ruediger Pluem* Do not use local scoped apr_bucket_brigade. We use...
2008-01-07 Ruediger Pluem* Optimize and unify detection of blank / corrupt chunk...
2008-01-07 Ruediger Pluem* Move duplicated code for error handling into local...
2008-01-07 Ruediger Pluem* Reuse bucket brigades instead of recreating them...
2008-01-07 Ruediger Pluem* Optimize assignments by using apr_pcalloc instead...
2008-01-07 Ruediger Pluem* Optimize alignment.
2008-01-07 Ruediger Pluem* Optimize solution from r609394 and remove chunk-exten...
2008-01-06 Ruediger Pluem* Fix cases with non blocking reads from the ap_http_fi...
2007-12-19 William A. Rowe JrWhat's left can exceed size_t
2007-12-09 Justin ErenkrantzCase statements should go on their own line. (No funct...
2007-12-08 Ruediger Pluem* If no data is available at this point of time we...
2007-11-28 Nick KewTypo fix
2007-11-28 Nick KewFix patch to PR#43882 as pointed out by trawick
2007-11-17 Nick KewSafer fix to PR43882 than in r595672.
2007-11-16 Nick Kewr595672 was incomplete. We need to be sure we reject...
2007-11-16 Nick KewDeal with unrecognised Transfer-Encoding headers.
2007-11-07 Graham Leggettcore: Add the option to keep aside a request body up...
2007-09-27 Nick KewAdd "DefaultType None" option
2007-09-10 Nick KewDon't send spurious "100 Continue" response lines.
2007-02-14 Nick KewReturn METHOD_NOT_ALLOWED, not FORBIDDEN, to a TRACE...
2007-02-07 Jim JagielskiFurther refinement for PR41056 / PR 19954 (mostly-fixed...
2006-12-07 Ruediger Pluem* Do not replace a Date header set by a proxied backend...
2006-11-28 Jim JagielskiProtect against any sort of non-block read that
2006-11-28 Jim JagielskiApply patch for PR 41056 (19954) to fix chunk
2006-09-05 Jeff TrawickReplace ap_get_server_version with ap_get_server_banner...
2006-07-11 Roy T. Fieldingupdate license header text
2006-04-19 Colm MacCarthaighUpdate the copyright year in all .c, .h and .xml files
2006-02-21 Jeff TrawickEnsure that the proper status line is written to the...
2006-01-27 Jim JagielskiIf the proxied response lacks a Server header, then
2006-01-06 Jim JagielskiAs long as we have the AP_BUCKET_IS_ERROR macro, let...
next