diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-07-29 22:03:42 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-07-29 22:03:42 +0000 |
commit | b97ddfc4a22c4868687e8d9b5c6e8894e3f6f2f0 (patch) | |
tree | ad7a21f8091b377486ce0feee1049f5e726c45a8 /usr.sbin/httpd/httpd.h | |
parent | 17dd93ea98abe4ab1d9af024083f4dc546ffe8a2 (diff) |
backout the previous: it broke wordpress somehow.
we need more care to find a proper fix for the fastcgi headers.
acknowledged by deraadt@
Diffstat (limited to 'usr.sbin/httpd/httpd.h')
-rw-r--r-- | usr.sbin/httpd/httpd.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.sbin/httpd/httpd.h b/usr.sbin/httpd/httpd.h index 896d25c1780..4060f3956e5 100644 --- a/usr.sbin/httpd/httpd.h +++ b/usr.sbin/httpd/httpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: httpd.h,v 1.93 2015/07/29 20:03:14 florian Exp $ */ +/* $OpenBSD: httpd.h,v 1.94 2015/07/29 22:03:41 reyk Exp $ */ /* * Copyright (c) 2006 - 2015 Reyk Floeter <reyk@openbsd.org> @@ -280,13 +280,6 @@ enum fcgistate { FCGI_READ_PADDING }; -enum fcgihttpheaderstate { - FCGI_HTTP_HEADER_ERROR, - FCGI_HTTP_HEADER_UNREAD, - FCGI_HTTP_HEADER_READ, - FCGI_HTTP_HEADER_DONE -}; - struct client { u_int32_t clt_id; pid_t clt_pid; @@ -323,9 +316,6 @@ struct client { int clt_fcgi_type; int clt_fcgi_chunked; int clt_fcgi_end; - struct evbuffer *clt_fcgi_http_header_evb; - enum fcgihttpheaderstate clt_fcgi_http_header_state; - char *clt_remote_user; struct evbuffer *clt_srvevb; |