| /lighttpd1.4/src/ |
| H A D | data_config.c | 45 free(ds->string.ptr); in data_config_free() 86 dc->code = pcre2_compile((PCRE2_SPTR)BUF_PTR_LEN(&dc->string), in data_config_pcre_compile() 92 (char *)errbuf, erroff, dc->string.ptr); in data_config_pcre_compile() 102 (char *)errbuf, dc->string.ptr); in data_config_pcre_compile() 112 "pcre2_pattern_info: %s, regex: %s", (char *)errbuf, dc->string.ptr); in data_config_pcre_compile() 118 dc->string.ptr); in data_config_pcre_compile() 134 dc->regex = pcre_compile(dc->string.ptr, 0, &errptr, &erroff, NULL); in data_config_pcre_compile() 138 dc->string.ptr, errptr, erroff); in data_config_pcre_compile() 147 dc->string.ptr, errptr); in data_config_pcre_compile() 156 dc->string.ptr); in data_config_pcre_compile() [all …]
|
| H A D | configfile-glue.c | 40 cfginfo->string = &dc->string; in config_get_config_cond_info() 535 if (dc->comp == COMP_HTTP_HOST && dc->string.ptr[0] != '/') { in config_check_cond_nocache_eval() 537 uint_fast32_t dlen = buffer_clen(&dc->string); in config_check_cond_nocache_eval() 546 : dc->string.ptr[(dlen = llen)] == ':') in config_check_cond_nocache_eval() 547 && 0 == memcmp(l->ptr, dc->string.ptr, dlen); in config_check_cond_nocache_eval() 551 else if (dc->comp == COMP_HTTP_REMOTE_IP && dc->string.ptr[0] != '/') { in config_check_cond_nocache_eval() 556 (((uintptr_t)dc->string.ptr + dc->string.used + 1 + 7) & ~7); in config_check_cond_nocache_eval() 557 int bits = ((unsigned char *)dc->string.ptr)[dc->string.used]; in config_check_cond_nocache_eval() 563 match ^= (buffer_is_equal(l, &dc->string)); in config_check_cond_nocache_eval() 574 uint_fast32_t dlen = buffer_clen(&dc->string); in config_check_cond_nocache_eval() [all …]
|
| H A D | mod_accesslog.c | 137 buffer string; member 181 for (; f->field != FORMAT_UNSET; ++f) free(f->string.ptr); in accesslog_parse_format_err() 260 buffer_copy_string_len(&f->string, format + k, i - k - 1); in accesslog_parse_format() 279 free(f->string.ptr); in mod_accesslog_free_format_fields() 489 buffer * const fstr = &f->string; in mod_accesslog_process_format() 733 const char *fmt = buffer_is_blank(&f->string) in accesslog_append_time() 735 : f->string.ptr; in accesslog_append_time() 898 buffer_append_string_buffer(b, &f->string); in log_access_record() 901 vb = http_header_request_get(r, f->opt, BUF_PTR_LEN(&f->string)); in log_access_record() 918 vb = http_header_env_get(r, BUF_PTR_LEN(&f->string)); in log_access_record() [all …]
|
| H A D | configfile.h | 41 buffer string; member
|
| H A D | plugin_config.h | 47 const buffer *string; member
|
| H A D | meson.build | 115 'explicit_memset': 'string.h', 133 'mempcpy': 'string.h', 134 'memset_s': 'string.h', 149 'strerror_r': 'string.h',
|
| H A D | configparser.y | 341 buffer_move(&dc->string, rvalue); in configparser_parse_condition() 680 pos = buffer_clen(&C->key) - buffer_clen(&B->string) - 5; in condlines()
|
| H A D | configfile.c | 245 pcre_keyvalue_burl_normalize_key(&config->string, tb); in config_burl_normalize_cond() 249 pcre_keyvalue_burl_normalize_key(&config->string, tb); in config_burl_normalize_cond() 1328 buffer * const b = &dc->string; in config_finalize()
|
| H A D | CMakeLists.txt | 311 string(REPLACE "\n" "" ${_link_FLAGS} ${__link_FLAGS}) 313 string(REPLACE "\n" "" ${_cflags} ${__cflags})
|
| H A D | network.c | 817 *(const buffer **)&host_token = cfginfo.string; in network_init()
|
| /lighttpd1.4/src/t/ |
| H A D | test_configfile.c | 12 const char *string; member 59 buffer_copy_string(b, rmtmask[i].string); in test_configfile_addrbuf_eq_remote_ip_mask() 85 rmtmask[i].string, in test_configfile_addrbuf_eq_remote_ip_mask()
|
| /lighttpd1.4/doc/outdated/ |
| H A D | configuration.txt | 32 VALUE : ( <string> | <integer> | <boolean> | <array> | VALUE [ + VALUE ]*) 33 <string> : "text" 36 <array> : "(" [ <string> "=>" ] <value> [, [ <string> "=>" ] <value> ]* ")" 101 $HTTP["query-string"] 102 match on the (not decoded) query-string 117 string equal match 119 string not equal match 125 and <value> is either a quoted ("") literal string or regular expression. 298 set the string returned by the Server: response header
|
| H A D | ssi.txt | 56 - quoted strings: 'string with a dollar: $FOO' 58 - unquoted strings: string
|
| H A D | proxy.txt | 57 ( "host" => <string> , 59 ( "host" => <string> ,
|
| H A D | magnet.txt | 115 -- 3. changing the query-string 135 …f the array are processed left to right and the elements can either be a string or a table. String… 228 -- split the query-string 230 for k, v in string.gmatch(lighty.env["uri.query"], "(%w+)=(%w+)") do 288 if (string.find(lighty.env["request.uri"], "UNION%s")) then
|
| H A D | fastcgi.txt | 96 ( "host" => <string> , 98 "socket" => <string>, # either socket 100 "bin-path" => <string>, # OPTIONAL 103 "mode" => <string>, # OPTIONAL 104 "docroot" => <string> , # OPTIONAL if "mode" 106 "check-local" => <string>, # OPTIONAL
|
| H A D | rewrite.txt | 56 query-string.::
|
| H A D | accesslog.txt | 80 %q query string
|
| H A D | authentication.txt | 182 # <realm> is a string to display in the dialog
|
| /lighttpd1.4/ |
| H A D | meson_options.txt | 159 type: 'string', 171 type: 'string', 177 type: 'string',
|
| H A D | NEWS | 86 * [meson] use non string true/false 494 * [core] better asm for binary num to ascii string 639 * [core] copy string and len directly from tmp_buf 679 * [mod_dirlisting] parse query string in javascript 1063 * [multiple] fix TLS config string parsing 1067 * [multiple] fix TLS config string parsing 1219 * [core] buffer string in data_config 1494 * [mod_webdav] fix inadvertent string truncation 1926 * [stat_cache] FAM: reduce string copying 2044 * [core] slightly simpler flag append to string [all …]
|
| H A D | SConstruct | 4 import string 379 'string.h',
|