summaryrefslogtreecommitdiff
path: root/src/response.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2018-09-09 01:50:33 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2018-09-23 18:01:58 -0400
commit3dd3cde902bb45165985f587cae590df2e9dfc38 (patch)
tree7569d21420035b74bbcf9c588690764079928d1a /src/response.h
parentc8159ee5f695ecdb6075974b93d3388838313710 (diff)
downloadlighttpd-git-3dd3cde902bb45165985f587cae590df2e9dfc38.tar.gz
[core] abstraction layer for HTTP header manip
http_header.[ch] convert existing calls to manip request/response headers convert existing calls to manip environment array (often header-related)
Diffstat (limited to 'src/response.h')
-rw-r--r--src/response.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/response.h b/src/response.h
index b3ba64cc..348224a9 100644
--- a/src/response.h
+++ b/src/response.h
@@ -11,10 +11,6 @@
int http_response_parse(server *srv, connection *con);
int http_response_write_header(server *srv, connection *con);
-int response_header_insert(server *srv, connection *con, const char *key, size_t keylen, const char *value, size_t vallen);
-int response_header_overwrite(server *srv, connection *con, const char *key, size_t keylen, const char *value, size_t vallen);
-int response_header_append(server *srv, connection *con, const char *key, size_t keylen, const char *value, size_t vallen);
-
typedef struct http_cgi_opts_t {
int authorizer;
int break_scriptfilename_for_php;