diff options
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; |