Home
last modified time | relevance | path

Searched refs:headers (Results 1 – 20 of 20) sorted by relevance

/lighttpd1.4/doc/outdated/
H A Dextforward.txt57 extforward.headers
58 Sets headers to search for finding the originl addresses.
62 extforward.headers = ("X-Cluster-Client-Ip")
H A Dcompress.txt58 to the compression headers, the upper limit is set to work sensibly with
119 If you want to add headers for uncompress and display diff.gz files , add this section in your conf…
H A Dconfiguration.txt468 debug.dump-unknown-headers
469 enables listing of internally unhandled HTTP-headers
473 debug.dump-unknown-headers = "enable"
H A Dperformance.txt142 - ETag response headers are used in HTTP/1.1 conditional caching.
143 ETag response headers are also required for mod_deflate and strongly
H A Dmagnet.txt84 * HTTP request-headers
H A Dfastcgi.txt148 (deprecated headers: X-Sendfile2 and X-LIGHTTPD-send-file)
/lighttpd1.4/src/
H A Dh2.c2033 } headers = { { /*(big-endian numbers)*/ in h2_send_hpack() local
2042 headers.u[2] = htonl(r->h2id); in h2_send_hpack()
2075 headers.c[3] = (len >> 16) & 0xFF; /*(off +3 to skip over align pad)*/ in h2_send_hpack()
2076 headers.c[4] = (len >> 8) & 0xFF; in h2_send_hpack()
2077 headers.c[5] = (len ) & 0xFF; in h2_send_hpack()
2079 headers.c[7] |= H2_FLAG_END_HEADERS; in h2_send_hpack()
2082 (const char *)headers.c+3, sizeof(headers)-3); in h2_send_hpack()
2085 memcpy(ptr, headers.c+3, sizeof(headers)-3); in h2_send_hpack()
2086 memcpy(ptr+sizeof(headers)-3, data, len); in h2_send_hpack()
2087 ptr += len + sizeof(headers)-3; in h2_send_hpack()
[all …]
H A Dmod_extforward.c86 const array *headers; member
179 pconf->headers = cpv->v.a; in mod_extforward_merge_config_cpv()
407 && (NULL == p->defaults.headers || 0 == p->defaults.headers->used)) { in SETDEFAULTS_FUNC()
408 p->defaults.headers = p->default_headers = array_init(2); in SETDEFAULTS_FUNC()
1075 if (NULL == p->conf.headers) return HANDLER_GO_ON; in URIHANDLER_FUNC()
1086 for (uint32_t k = 0; k < p->conf.headers->used; ++k) { in URIHANDLER_FUNC()
1087 const data_string * const ds = (data_string *)p->conf.headers->data[k]; in URIHANDLER_FUNC()
H A Dresponse.h35 handler_t(*headers)(request_st *, struct http_response_opts_t *); member
H A Dhttp-header-glue.c1231 return (opts->headers) ? opts->headers(r, opts) : HANDLER_GO_ON; in http_response_parse_headers()
H A Dmeson.build38 headers = [ variable
70 foreach h : headers
H A Dmod_proxy.c1135 hctx->gw.opts.headers = proxy_response_headers; in mod_proxy_check_extension()
H A Dmod_cgi.c1058 hctx->opts.headers = cgi_response_headers; in URIHANDLER_FUNC()
/lighttpd1.4/
H A Dconfigure.ac396 [AC_MSG_ERROR([ldap headers not found, install them or build without --with-ldap])]
408 [AC_MSG_ERROR([lber headers not found, install them or build without --with-ldap])]
433 [AC_MSG_ERROR([pam headers not found, install them or build without --with-pam])]
504 AC_MSG_ERROR([valgrind headers not found. install them or build without --with-valgrind])
648 AC_MSG_ERROR([openssl headers not found. install them or build without --with-openssl])
698 AC_MSG_ERROR([wolfssl headers not found. install them or build without --with-wolfssl])
781 AC_MSG_ERROR([nettle headers not found. install them or build without --with-nettle])
956 [AC_MSG_ERROR([zlib headers not found, install them or build without --with-zlib])]
987 [AC_MSG_ERROR([zstd headers not found, install them or build without --with-zstd])]
1018 AC_MSG_ERROR([bzip2 headers not found, install them or build without --with-bzip2])
[all …]
H A DREADME.FreeBSD35 To help autotools find libraries and headers:
H A DNEWS442 * [build] check headers before some funcs
673 * [core] ignore empty headers unless pseudo-headers
1521 * [core] parse h2 pseudo-headers
2100 * [core,security] process headers after combining folded headers
3327 * Don't send empty Server headers (#1620)
3436 "Content-Length: 0" headers
3492 * fixed broken Set-Cookie headers
3645 * added more X-* headers to mod_proxy
3667 * fixed duplicate headers in mod_proxy
3905 * fixed detection of SSL headers
[all …]
H A DINSTALL191 …fig zlib zstd brotli openssl libxml sqlite3 openldap libunwind libunwind-headers mysql57 openldap …
H A DSConstruct98 # if we have a list of headers define HAVE_ only for last one
/lighttpd1.4/src/ls-hpack/
H A DREADME.md11 LS-HPACK provides functionality to encode and decode HTTP headers using
/lighttpd1.4/tests/
H A Dlighttpd.conf92 extforward.headers = ( "Forwarded", "X-Forwarded-For" )