]> granicus.if.org Git - apache/commit
NET_TIME, as a standalone feature, was a horrid idea.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 6 Oct 2005 01:29:42 +0000 (01:29 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 6 Oct 2005 01:29:42 +0000 (01:29 +0000)
commit7e2a5490d174a33c3da70db17bc5d4e5a7a22cf9
tree8cf157ab9c86f6d6a5d76f863cee50505514d801
parente279db098e9447b7e25f94f71394ef16e8c2097a
  NET_TIME, as a standalone feature, was a horrid idea.

  The core filter will NOT operate correctly across platforms
  (even between Linux/Solaris) without setting up the conn->timeout,
  so always apply the timeout when establishing the core filter.

  The keep-alive-timeout is entirely an HTTP-ism, and needs to
  move to the http protocol handler.  Note #1; this isn't triggered
  in the event mpm, but the event mpm introspects s->keep_alive_timeout
  directly adding it to the pollset, so this is a non-sequitor.

  Finally, once the headers are read, the named virtual host may
  have a different (more/less permissive) timeout for the remainder
  of the request body.  This http-centric patch picks up that subtle
  detail and can switch to a named-vhost timeout.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@306495 13f79535-47bb-0310-9956-ffa450edef68
include/ap_mmn.h
include/http_core.h
modules/http/http_core.c
server/core.c
server/core_filters.c
server/protocol.c