]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
Eliminated the use of AP_MODE_SPECULATIVE brigade reads to check
authorBrian Pane <brianp@apache.org>
Sat, 6 Jul 2002 01:53:37 +0000 (01:53 +0000)
committerBrian Pane <brianp@apache.org>
Sat, 6 Jul 2002 01:53:37 +0000 (01:53 +0000)
commit5a02911204801d420fd00f4b2aa556fe161096f4
tree8aa5de25465cd741ab57b28057fabe3b92b08b8a
parent8eec97be87c48ca9247f2e4db843bc4416344eb4
Eliminated the use of AP_MODE_SPECULATIVE brigade reads to check
for request header continuation lines.  Instead, ap_get_mime_headers_core()
now sets aside each line of input until it sees the next line.  If the
next line starts with a tab, it is appended to the previous one; otherwise,
the previous line is added to the request headers table.

This reduces the number of temporary buckets that must be created
and destroyed to read in a request.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95964 13f79535-47bb-0310-9956-ffa450edef68
server/protocol.c