summaryrefslogtreecommitdiff
path: root/src/response.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-11-26 02:13:05 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-07-08 19:54:28 -0400
commit50bdb55de804953378171cd1caf82bef27ec6cab (patch)
tree7246396bcd91e110122f6bf98c47a651c188a395 /src/response.h
parent0fcd51438dc663dc1bebf54404e94128924687dd (diff)
downloadlighttpd-git-50bdb55de804953378171cd1caf82bef27ec6cab.tar.gz
[multiple] connection hooks no longer get (srv *)
(explicit (server *) not passed; available in con->srv)
Diffstat (limited to 'src/response.h')
-rw-r--r--src/response.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/response.h b/src/response.h
index c6b367ae..3d8661fa 100644
--- a/src/response.h
+++ b/src/response.h
@@ -43,7 +43,7 @@ int http_cgi_headers(connection *con, http_cgi_opts *opts, http_cgi_header_appen
handler_t http_response_parse_headers(connection *con, http_response_opts *opts, buffer *hdrs);
handler_t http_response_read(connection *con, http_response_opts *opts, buffer *b, fdnode *fdn);
-handler_t http_response_prepare(server *srv, connection *con);
+handler_t http_response_prepare(connection *con);
int http_response_redirect_to_directory(connection *con, int status);
int http_response_handle_cachable(connection *con, const buffer * mtime);
void http_response_body_clear(connection *con, int preserve_length);