diff options
author | Elan Ruusamäe <glen@delfi.ee> | 2009-09-21 13:15:57 +0000 |
---|---|---|
committer | Elan Ruusamäe <glen@delfi.ee> | 2009-09-21 13:15:57 +0000 |
commit | 6c75b7bf2481ab3f59ca20b3e9424cc31aac3ee6 (patch) | |
tree | eed38a73145a80f8309dc15d04dafcd95c450abf /src/response.h | |
parent | e74295262b84a16a05b1507a21a5eaba9330c8f3 (diff) | |
download | lighttpd-git-6c75b7bf2481ab3f59ca20b3e9424cc31aac3ee6.tar.gz |
- Combine Cache-Control header value in mod_expire to existing HTTP header if header already added by other modules (fixes #2068)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2621 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/response.h')
-rw-r--r-- | src/response.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/response.h b/src/response.h index c9ff2344..a479e0f0 100644 --- a/src/response.h +++ b/src/response.h @@ -10,6 +10,7 @@ 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); handler_t http_response_prepare(server *srv, connection *con); int http_response_redirect_to_directory(server *srv, connection *con); |