]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
Implement a length argument on input filters. There are three possible
authorRyan Bloom <rbb@apache.org>
Thu, 12 Oct 2000 16:35:39 +0000 (16:35 +0000)
committerRyan Bloom <rbb@apache.org>
Thu, 12 Oct 2000 16:35:39 +0000 (16:35 +0000)
commitc27033df766451cb3e3c19a251e6ffb777dbf9bd
treee03e81cbedc826dd2039e0f77c64a1458ffe6f6e
parentc792f50d0ab42d10c167d8c4f5f4f7e56c0a0c08
Implement a length argument on input filters.  There are three possible
values for the length, -1, 0, and a positive number.  -1 means that the
next filter should return all the data it has, the current filter will
take care to ensure that the protocol is followed.  Most filters will
never use this, because it implies they are implementing a conn_based
input filter.  0 means give me exactly one line of data.  A positive
number means give me a maximum of n bytes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86567 13f79535-47bb-0310-9956-ffa450edef68
include/http_protocol.h
include/httpd.h
include/util_filter.h
modules/http/http_core.c
modules/http/http_protocol.c
server/util_filter.c