summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd/httpd.h
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2014-09-01 09:32:44 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2014-09-01 09:32:44 +0000
commit7ed0b60199efc1671e58463de1c421cf0fd3de86 (patch)
treeaf3501bd350db006b7a4c5496d90848f145eac74 /usr.sbin/httpd/httpd.h
parentb4cc8d615c9e8863f1f95c112753cf60cc0967c9 (diff)
Replace the code to get the FastCGI Status header with a proper way to
parse and write the headers using the http response descriptor. This allows to add other tweaks, like support for chunked encoding, later. OK florian@
Diffstat (limited to 'usr.sbin/httpd/httpd.h')
-rw-r--r--usr.sbin/httpd/httpd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/httpd/httpd.h b/usr.sbin/httpd/httpd.h
index 04b1f052309..586ec09a192 100644
--- a/usr.sbin/httpd/httpd.h
+++ b/usr.sbin/httpd/httpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: httpd.h,v 1.55 2014/08/29 13:01:46 reyk Exp $ */
+/* $OpenBSD: httpd.h,v 1.56 2014/09/01 09:32:43 reyk Exp $ */
/*
* Copyright (c) 2006 - 2014 Reyk Floeter <reyk@openbsd.org>
@@ -543,6 +543,7 @@ void imsg_event_add(struct imsgev *);
int imsg_compose_event(struct imsgev *, u_int16_t, u_int32_t,
pid_t, int, void *, u_int16_t);
void socket_rlimit(int);
+char *evbuffer_getline(struct evbuffer *);
char *get_string(u_int8_t *, size_t);
void *get_data(u_int8_t *, size_t);
int sockaddr_cmp(struct sockaddr *, struct sockaddr *, int);