| /lighttpd1.4/src/ |
| H A D | base64.c | 107 out[out_pos+0] = base64_table[(v >> 18) & 0x3f]; in li_base64_enc() 108 out[out_pos+1] = base64_table[(v >> 12) & 0x3f]; in li_base64_enc() 109 out[out_pos+2] = base64_table[(v >> 6) & 0x3f]; in li_base64_enc() 110 out[out_pos+3] = base64_table[(v ) & 0x3f]; in li_base64_enc() 122 out[out_pos+0] = base64_table[(v >> 6) & 0x3f]; in li_base64_enc() 123 out[out_pos+1] = base64_table[(v ) & 0x3f]; in li_base64_enc() 125 out[out_pos+2] = out[out_pos+3] = padchar; in li_base64_enc() 140 out[out_pos+3] = padchar; in li_base64_enc() 159 buffer_commit(out, out_pos); in buffer_append_base64_enc() 168 buffer_string_prepare_append(out, reserve); in buffer_append_base64_decode() [all …]
|
| H A D | base64.h | 14 unsigned char* buffer_append_base64_decode(buffer *out, const char* in, size_t in_length, base64_ch… 16 size_t li_base64_enc(char* restrict out, size_t out_length, const unsigned char* restrict in, size_… 17 #define li_to_base64_no_padding(out, out_length, in, in_length, charset) \ argument 18 li_base64_enc((out), (out_length), (in), (in_length), (charset), 0) 19 #define li_to_base64(out, out_length, in, in_length, charset) \ argument 20 li_base64_enc((out), (out_length), (in), (in_length), (charset), 1) 24 char* buffer_append_base64_enc(buffer *out, const unsigned char* in, size_t in_length, base64_chars… 26 #define buffer_append_base64_encode_no_padding(out, in, in_length, charset) \ argument 27 buffer_append_base64_enc((out), (in), (in_length), (charset), 0) 28 #define buffer_append_base64_encode(out, in, in_length, charset) \ argument [all …]
|
| H A D | lemon.c | 3319 FILE *out; 3338 FILE *out; 3730 FILE *out, in emit_destructor_code() argument 3762 fputc(*cp,out); in emit_destructor_code() 4044 FILE *out, in emit_code() argument 4319 if( out==0 ){ in ReportTable() 4397 fprintf(out, in ReportTable() 4940 fclose(out); in ReportTable() 4948 FILE *out, *in; in ReportHeader() local 4972 if( out ){ in ReportHeader() [all …]
|
| H A D | mod_dirlisting.c | 619 buffer_clear(out); in http_list_directory_include_file() 633 if (out != tb) in http_list_directory_include_file() 855 buffer_append_str3(out, in http_list_directory_header() 865 buffer_append_str3(out, in http_list_directory_header() 966 buffer_append_str3(out, in http_list_directory_footer() 1156 buffer_clear(out); in http_list_directory() 1172 if (out == tb) { in http_list_directory() 1177 buffer_clear(out); in http_list_directory() 1222 if (out == tb) { in http_list_directory() 1227 buffer_clear(out); in http_list_directory() [all …]
|
| H A D | mod_simple_vhost.c | 133 buffer_copy_buffer(out, sroot); in build_doc_root_path() 141 buffer_append_string_buffer(out, host); in build_doc_root_path() 143 buffer_append_string_len(out, host->ptr, dp - host->ptr); in build_doc_root_path() 148 buffer_append_path_len(out, BUF_PTR_LEN(droot)); in build_doc_root_path() 151 buffer_append_slash(out); in build_doc_root_path() 155 static int build_doc_root(request_st * const r, plugin_data *p, buffer *out, const buffer *host) { in build_doc_root() argument 157 build_doc_root_path(out, p->conf.server_root, host, p->conf.document_root); in build_doc_root() 160 if (buffer_is_equal(out, &p->last_root)) return 1; in build_doc_root() 162 if (!stat_cache_path_isdir(out)) { in build_doc_root() 164 log_perror(r->conf.errh, __FILE__, __LINE__, "%s", out->ptr); in build_doc_root() [all …]
|
| H A D | buffer.c | 895 char *out = b->ptr; in buffer_path_simplify() local 912 char *walk = out; in buffer_path_simplify() 926 out = walk-1; in buffer_path_simplify() 930 *out = *++walk; in buffer_path_simplify() 932 *out = *(walk += 2); in buffer_path_simplify() 935 out = walk; in buffer_path_simplify() 947 ++out; in buffer_path_simplify() 955 while (out > b->ptr && *--out != '/') ; in buffer_path_simplify() 958 ++out; in buffer_path_simplify() 967 ++out; in buffer_path_simplify() [all …]
|
| H A D | mod_deflate.c | 863 wr = write(hctx->cache_fd, out, len); in mod_deflate_cache_file_append() 864 } while (wr > 0 ? ((out += wr), (len -= (size_t)wr)) : errno == EINTR); in mod_deflate_cache_file_append() 871 ? http_chunk_append_mem(hctx->r, out, len) in stream_http_chunk_append_mem() 872 : mod_deflate_cache_file_append(hctx, out, len); in stream_http_chunk_append_mem() 1162 const uint8_t *out = BrotliEncoderTakeOutput(br, &outsz); in stream_br_compress() local 1166 if (0 != stream_http_chunk_append_mem(hctx, (char *)out, outsz)) in stream_br_compress() 1181 const uint8_t *out = BrotliEncoderTakeOutput(br, &outsz); in stream_br_flush() local 1184 if (0 != stream_http_chunk_append_mem(hctx, (char *)out, outsz)) in stream_br_flush() 1495 void *out; member 1507 params->out, params->outsz) in mod_deflate_using_libdeflate_setjmp_cb() [all …]
|
| H A D | lempar.c | 484 int ParseCoverage(FILE *out){ in ParseCoverage() argument 492 if( out ){ in ParseCoverage() 493 fprintf(out,"State %d lookahead %s %s\n", stateno, in ParseCoverage()
|
| H A D | configfile.c | 2330 buffer *out = buffer_init(); in config_parse_cmd() local 2334 rd = read(fds[0], buffer_string_prepare_append(out, 1023), 1023); in config_parse_cmd() 2335 if (rd >= 0) buffer_commit(out, (size_t)rd); in config_parse_cmd() 2355 ret = config_parse(srv, context, cmd, BUF_PTR_LEN(out)); in config_parse_cmd() 2357 buffer_free(out); in config_parse_cmd()
|
| /lighttpd1.4/src/t/ |
| H A D | test_base64.c | 10 char out[4] = { 0, 0, 0, 0 }; in check_base64() local 11 …force_assert(out_exp == li_to_base64_no_padding(out, sizeof(out), (const unsigned char *)in, in_le… in check_base64() 14 force_assert(NULL != buffer_append_base64_decode(check, out, out_exp, enc)); in check_base64()
|
| H A D | test_buffer.c | 10 …lify(buffer *psrc, buffer *pdest, const char *in, size_t in_len, const char *out, size_t out_len) { in run_buffer_path_simplify() argument 16 if (!buffer_eq_slen(pdest, out, out_len)) { in run_buffer_path_simplify() 22 out, in run_buffer_path_simplify() 29 if (!buffer_eq_slen(pdest, out, out_len)) { in run_buffer_path_simplify() 35 out, in run_buffer_path_simplify()
|
| H A D | test_burl.c | 8 …uffer *ptmp, int flags, int line, const char *in, size_t in_len, const char *out, size_t out_len) { in run_burl_normalize() argument 19 if (buffer_eq_slen(psrc, out, out_len)) return; in run_burl_normalize() 22 __FILE__, line, __func__+4, in, out, psrc->ptr); in run_burl_normalize()
|
| /lighttpd1.4/src/ls-hpack/ |
| H A D | lshpack.c | 1946 dst[0] = hdec.out[0]; in lshpack_dec_huff_decode() 1947 dst[1] = hdec.out[1]; in lshpack_dec_huff_decode() 1948 dst[2] = hdec.out[2]; in lshpack_dec_huff_decode() 1968 *dst++ = hdec.out[0]; in lshpack_dec_huff_decode() 1969 *dst++ = hdec.out[1]; in lshpack_dec_huff_decode() 2012 *dst++ = hdec.out[0]; in lshpack_dec_huff_decode() 2013 *dst++ = hdec.out[1]; in lshpack_dec_huff_decode() 2014 *dst++ = hdec.out[2]; in lshpack_dec_huff_decode() 2017 *dst++ = hdec.out[0]; in lshpack_dec_huff_decode() 2018 *dst++ = hdec.out[1]; in lshpack_dec_huff_decode() [all …]
|
| H A D | lsxpack_header.h | 130 char *out, size_t offset, size_t len) in lsxpack_header_prepare_decode() argument 133 hdr->buf = out; in lsxpack_header_prepare_decode()
|
| /lighttpd1.4/ |
| H A D | packdist.sh | 72 local repourl ticketurl inf out 86 local repourl ticketurl inf out
|
| H A D | README | 101 - Sends 416 for "out-of-range" on Range: Header
|
| /lighttpd1.4/doc/outdated/ |
| H A D | state.txt | 66 The parsed request is handled by 'handlereq' and as soon as a decision out 68 HTTP-response header. In the 'write' state the prepare content is sent out 109 'handlereq' to handle all aspect which are necessary to find out what has
|
| H A D | performance.txt | 44 comment out the others 59 - configs provided by distros are often out-dated and then kept for historic 64 into configs since then. Prefer to comment out or remove: 217 Note: The following is old and possibly out-dated. 229 help to get the last few percent of performance out of the server. Be aware that
|
| H A D | ssl.txt | 65 -keyout server.pem -out server.pem \
|
| H A D | accesslog.txt | 114 this prefix is assumed to be special for lighttpd and won't be sent out
|
| H A D | configuration.txt | 428 maximum number of seconds until a waiting, non keep-alive read times out 434 maximum number of seconds until a waiting write call times out and closes
|
| H A D | magnet.txt | 128 You can generate your own content and send it out to the clients. :: 147 Internally lighty will use the sendfile() call to send out the static files at full speed.
|
| /lighttpd1.4/tests/ |
| H A D | README | 72 that tests are trying to use to run a backend. Try exiting out of your web 74 find out which process is using the port.)
|
| H A D | Makefile.am | 48 rm -f *.out
|
| /lighttpd1.4/doc/scripts/ |
| H A D | cert-staple.sh | 76 …EM" -verify_other "$CHAIN_PEM" -cert "$CERT_PEM" -respin "$OCSP_TMP" -no_nonce -out /dev/null 2>&1)
|