aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* libbb: consolidate NOMMU fix of restoring high bit in argv[0][0]Denys Vlasenko2023-04-061-1/+1
* httpd: do not mangle cgi-bin/SCRIPT/params URLsDenys Vlasenko2023-03-281-36/+38
* libbb: introduce and use chdir_or_warn()Denys Vlasenko2022-01-131-2/+1
* httpd: fix compile failure if !FEATURE_HTTPD_RANGESDenys Vlasenko2021-12-261-0/+4
* httpd: do not send Last-Modified / ETag / Content-Length for error pagesDenys Vlasenko2021-12-171-20/+14
* httpd: don't send Content-Length in error pages headerDenys Vlasenko2021-12-171-14/+21
* httpd: if range is not specified, correctly fall back to read/write loopDenys Vlasenko2021-10-081-2/+5
* help: s/Don't daemonize/Run in foreground/gDenys Vlasenko2021-10-081-1/+1
* httpd: fix config depsDenys Vlasenko2021-09-101-0/+1
* httpd,telnetd: make default port configurableSergey Ponomarev2021-09-091-2/+10
* httpd: add comment about faster rejection of denied IPsDenys Vlasenko2021-05-051-0/+7
* httpd: if no request was given at all, close the socket without generating er...Denys Vlasenko2021-05-051-21/+30
* httpd: no need to strcpy() when we only need to copy one byteDenys Vlasenko2021-05-051-9/+14
* httpd: avoid extra stat() calls for "GET /dirname/" caseDenys Vlasenko2021-05-041-10/+8
* httpd: avoid one stat() call for "GET /dirname" caseDenys Vlasenko2021-05-041-16/+14
* httpd: support HEAD requests even in !CGI configDenys Vlasenko2021-05-041-13/+10
* httpd: move proxy check before URL duplication and request type checkDenys Vlasenko2021-05-041-56/+52
* httpd: cgi-bin support for DELETE, PUT, OPTIONS etc methodsAlexander Sack2021-05-041-45/+40
* libbb: introduce and use fputs_stdoutRon Yorston2021-02-031-2/+2
* Fix httpd compilation on the FreeBSDAlex Samorukov2021-01-041-0/+5
* httpd: fix offset for sendfileMaxim Storchak2020-12-291-3/+3
* libbb: change decode_base32/64 API to return the end of _dst_, not _src_.Denys Vlasenko2020-11-281-4/+2
* libbb: smaller and faster decode_base64()Denys Vlasenko2020-11-271-37/+0
* httpd: code shrinkXabier Oneca2020-10-061-0/+7
* httpd: Make Deny/Allow by IP config support optionalSergey Ponomarev2020-08-161-18/+44
* httpd: Support caching via ETag headerSergey Ponomarev2020-08-151-3/+54
* httpd: Don't add Last-Modified header to responseSergey Ponomarev2020-08-151-6/+25
* httpd: Don't add Date header to responseSergey Ponomarev2020-08-151-2/+16
* httpd: Update to HTTP/1.1Sergey Ponomarev2020-08-151-8/+8
* httpd: allow '-h' to work when daemonized with NOMMU enabledRon Yorston2020-06-091-3/+3
* httpd: permit non-default home directory with NOMMU enabledRon Yorston2020-04-301-1/+6
* libbb: reduce the overhead of single parameter bb_error_msg() callsJames Byrne2019-07-021-5/+5
* httpd: .js is "application/javascript", not "application/x-javascript"Denys Vlasenko2019-06-071-1/+1
* httpd: add js to built in MIME types listDenys Vlasenko2019-06-071-0/+1
* httpd: add svg to built in MIME types listVicente Jimenez Aguilar2019-06-071-0/+1
* httpd: do disable header reading timeout even if proxyingDenys Vlasenko2019-04-191-0/+2
* httpd: use full size of iobuf[] when piping CGI dataDenys Vlasenko2019-04-191-11/+4
* httpd: do not set alarm() timeout if we read cached headerDenys Vlasenko2019-04-191-1/+1
* httpd: deindent code block, no code changesDenys Vlasenko2019-04-191-91/+91
* httpd: require "HTTP/xyz" at the end of request lineDenys Vlasenko2019-04-191-14/+8
* httpd: pass authorization header to CGI if not BasicAlexander Vickberg2019-04-181-7/+7
* httpd: When sending gzipped content use content-length headerAlexander Vickberg2019-04-171-2/+45
* httpd: extract query string only after proxying checkDenys Vlasenko2019-04-161-12/+7
* httpd: make rmt_ip variable localDenys Vlasenko2019-04-161-17/+22
* httpd: check denied IPs even before reading 1st query lineDenys Vlasenko2019-04-161-2/+2
* httpd: do not decode URL and headers if proxying - send all verbatimDenys Vlasenko2019-04-161-68/+46
* httpd: remove duplicate "decode URL escape sequences" codeDenys Vlasenko2019-04-161-9/+0
* httpd: put all headers into environment as HTTP_UPPERCASED_HEADER=valDenys Vlasenko2019-04-161-105/+120
* httpd: fix handling of EOF in get_line()Denys Vlasenko2019-04-161-8/+10
* httpd: add missing {}Denys Vlasenko2019-04-161-1/+2