Home
last modified time | relevance | path

Searched refs:method (Results 1 – 10 of 10) sorted by relevance

/lighttpd1.4/src/
H A Dhttp_kv.h93 #define http_method_get_or_head(method) ((method) <= HTTP_METHOD_HEAD) argument
94 #define http_method_get_head_query(method) ((method) <= HTTP_METHOD_QUERY) argument
95 #define http_method_get_head_query_post(method) ((method) <= HTTP_METHOD_POST) argument
98 static inline void http_method_append (buffer * const b, const http_method_t method);
99 static inline void http_method_append (buffer * const b, const http_method_t method) { in http_method_append() argument
100 const buffer * const kv = http_method_buf(method); in http_method_append()
H A Dmod_ajp13.c348 uint8_t method; in ajp13_method_byte()
349 for (method = 1; method < sizeof(ajp13_methods); ++method) { in ajp13_method_byte()
350 if (ajp13_methods[method] == m) break; in ajp13_method_byte()
352 return (method < sizeof(ajp13_methods)) ? method : 0; in ajp13_method_byte()
H A Dmod_auth.c447 const buffer *method = NULL, *realm = NULL, *require = NULL; in mod_auth_require_parse_array() local
466 method = &ds->value; in mod_auth_require_parse_array()
496 if (!method || buffer_is_blank(method)) { in mod_auth_require_parse_array()
502 auth_scheme = http_auth_scheme_get(method); in mod_auth_require_parse_array()
506 "auth.require = ( \"...\" => ( ..., \"method\" => \"...\") )", method->ptr); in mod_auth_require_parse_array()
888 …tp_auth_info_t * const ai, const http_auth_digest_params_t * const dp, const buffer * const method) in mod_auth_digest_mutate() argument
890 force_assert(method); in mod_auth_digest_mutate()
926 iov[0].iov_base = method->ptr; in mod_auth_digest_mutate()
927 iov[0].iov_len = buffer_clen(method); in mod_auth_digest_mutate()
/lighttpd1.4/doc/outdated/
H A Dauthentication.txt32 lighttpd supports both authentication method described by
38 The Basic method transfers the username and the password in
46 The Digest method only transfers a hashed value over the
53 Depending on the method lighttpd provides various way to store
177 # ( "method" => "digest"/"basic",
190 "method" => "digest",
196 "method" => "digest",
H A Dcompress.txt26 most suitable compression method. We support deflate, gzip and bzip2.
43 The names of the cache files are made of the filename, the compression method
H A Daccesslog.txt75 %m request method (GET, POST, ...)
H A Dconfiguration.txt97 $HTTP["method"]
98 math on the http method
/lighttpd1.4/doc/
H A Dinitscripts.txt17 With lighttpd 1.4.46 and later, SIGUSR1 is the recommended method to gracefully
/lighttpd1.4/
H A DREADME102 - Sends 501 for request-method != (GET|POST|HEAD)
H A DNEWS284 * [multiple] recognize HTTP QUERY method
779 * [core] make insert_dup an optional array method
2088 * [mod_webdav] separate func for each request method
2189 * [core] http_kv.[ch] method, status, version str
2226 * [mod_proxy] basic support for HTTP CONNECT method (#2060)
3030 …* [auth] new method "extern" to use already present REMOTE_USER (from magnet, ssl, ...) (fixes #24…
3043 * add PATCH method (fixes #2424)
3073 * Don't overwrite 401 (auth required) with 501 (unknown method) (fixes #2341)
3324 * Fix mod_magnet: enable "request.method" and "request.protocol" in lighty.env (#1308)
3408 …* req-method OPTIONS: do not insert default response if request was denied, do not deny OPTIONS by…