| Commit message (Expand) | Author | Age | Files | Lines |
* | libbb: consolidate NOMMU fix of restoring high bit in argv[0][0] | Denys Vlasenko | 2023-04-06 | 1 | -1/+1 |
* | httpd: do not mangle cgi-bin/SCRIPT/params URLs | Denys Vlasenko | 2023-03-28 | 1 | -36/+38 |
* | libbb: introduce and use chdir_or_warn() | Denys Vlasenko | 2022-01-13 | 1 | -2/+1 |
* | httpd: fix compile failure if !FEATURE_HTTPD_RANGES | Denys Vlasenko | 2021-12-26 | 1 | -0/+4 |
* | httpd: do not send Last-Modified / ETag / Content-Length for error pages | Denys Vlasenko | 2021-12-17 | 1 | -20/+14 |
* | httpd: don't send Content-Length in error pages header | Denys Vlasenko | 2021-12-17 | 1 | -14/+21 |
* | httpd: if range is not specified, correctly fall back to read/write loop | Denys Vlasenko | 2021-10-08 | 1 | -2/+5 |
* | help: s/Don't daemonize/Run in foreground/g | Denys Vlasenko | 2021-10-08 | 1 | -1/+1 |
* | httpd: fix config deps | Denys Vlasenko | 2021-09-10 | 1 | -0/+1 |
* | httpd,telnetd: make default port configurable | Sergey Ponomarev | 2021-09-09 | 1 | -2/+10 |
* | httpd: add comment about faster rejection of denied IPs | Denys Vlasenko | 2021-05-05 | 1 | -0/+7 |
* | httpd: if no request was given at all, close the socket without generating er... | Denys Vlasenko | 2021-05-05 | 1 | -21/+30 |
* | httpd: no need to strcpy() when we only need to copy one byte | Denys Vlasenko | 2021-05-05 | 1 | -9/+14 |
* | httpd: avoid extra stat() calls for "GET /dirname/" case | Denys Vlasenko | 2021-05-04 | 1 | -10/+8 |
* | httpd: avoid one stat() call for "GET /dirname" case | Denys Vlasenko | 2021-05-04 | 1 | -16/+14 |
* | httpd: support HEAD requests even in !CGI config | Denys Vlasenko | 2021-05-04 | 1 | -13/+10 |
* | httpd: move proxy check before URL duplication and request type check | Denys Vlasenko | 2021-05-04 | 1 | -56/+52 |
* | httpd: cgi-bin support for DELETE, PUT, OPTIONS etc methods | Alexander Sack | 2021-05-04 | 1 | -45/+40 |
* | libbb: introduce and use fputs_stdout | Ron Yorston | 2021-02-03 | 1 | -2/+2 |
* | Fix httpd compilation on the FreeBSD | Alex Samorukov | 2021-01-04 | 1 | -0/+5 |
* | httpd: fix offset for sendfile | Maxim Storchak | 2020-12-29 | 1 | -3/+3 |
* | libbb: change decode_base32/64 API to return the end of _dst_, not _src_. | Denys Vlasenko | 2020-11-28 | 1 | -4/+2 |
* | libbb: smaller and faster decode_base64() | Denys Vlasenko | 2020-11-27 | 1 | -37/+0 |
* | httpd: code shrink | Xabier Oneca | 2020-10-06 | 1 | -0/+7 |
* | httpd: Make Deny/Allow by IP config support optional | Sergey Ponomarev | 2020-08-16 | 1 | -18/+44 |
* | httpd: Support caching via ETag header | Sergey Ponomarev | 2020-08-15 | 1 | -3/+54 |
* | httpd: Don't add Last-Modified header to response | Sergey Ponomarev | 2020-08-15 | 1 | -6/+25 |
* | httpd: Don't add Date header to response | Sergey Ponomarev | 2020-08-15 | 1 | -2/+16 |
* | httpd: Update to HTTP/1.1 | Sergey Ponomarev | 2020-08-15 | 1 | -8/+8 |
* | httpd: allow '-h' to work when daemonized with NOMMU enabled | Ron Yorston | 2020-06-09 | 1 | -3/+3 |
* | httpd: permit non-default home directory with NOMMU enabled | Ron Yorston | 2020-04-30 | 1 | -1/+6 |
* | libbb: reduce the overhead of single parameter bb_error_msg() calls | James Byrne | 2019-07-02 | 1 | -5/+5 |
* | httpd: .js is "application/javascript", not "application/x-javascript" | Denys Vlasenko | 2019-06-07 | 1 | -1/+1 |
* | httpd: add js to built in MIME types list | Denys Vlasenko | 2019-06-07 | 1 | -0/+1 |
* | httpd: add svg to built in MIME types list | Vicente Jimenez Aguilar | 2019-06-07 | 1 | -0/+1 |
* | httpd: do disable header reading timeout even if proxying | Denys Vlasenko | 2019-04-19 | 1 | -0/+2 |
* | httpd: use full size of iobuf[] when piping CGI data | Denys Vlasenko | 2019-04-19 | 1 | -11/+4 |
* | httpd: do not set alarm() timeout if we read cached header | Denys Vlasenko | 2019-04-19 | 1 | -1/+1 |
* | httpd: deindent code block, no code changes | Denys Vlasenko | 2019-04-19 | 1 | -91/+91 |
* | httpd: require "HTTP/xyz" at the end of request line | Denys Vlasenko | 2019-04-19 | 1 | -14/+8 |
* | httpd: pass authorization header to CGI if not Basic | Alexander Vickberg | 2019-04-18 | 1 | -7/+7 |
* | httpd: When sending gzipped content use content-length header | Alexander Vickberg | 2019-04-17 | 1 | -2/+45 |
* | httpd: extract query string only after proxying check | Denys Vlasenko | 2019-04-16 | 1 | -12/+7 |
* | httpd: make rmt_ip variable local | Denys Vlasenko | 2019-04-16 | 1 | -17/+22 |
* | httpd: check denied IPs even before reading 1st query line | Denys Vlasenko | 2019-04-16 | 1 | -2/+2 |
* | httpd: do not decode URL and headers if proxying - send all verbatim | Denys Vlasenko | 2019-04-16 | 1 | -68/+46 |
* | httpd: remove duplicate "decode URL escape sequences" code | Denys Vlasenko | 2019-04-16 | 1 | -9/+0 |
* | httpd: put all headers into environment as HTTP_UPPERCASED_HEADER=val | Denys Vlasenko | 2019-04-16 | 1 | -105/+120 |
* | httpd: fix handling of EOF in get_line() | Denys Vlasenko | 2019-04-16 | 1 | -8/+10 |
* | httpd: add missing {} | Denys Vlasenko | 2019-04-16 | 1 | -1/+2 |