Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-04-06libbb: consolidate NOMMU fix of restoring high bit in argv[0][0]Denys Vlasenko
2023-03-28httpd: do not mangle cgi-bin/SCRIPT/params URLsDenys Vlasenko
2022-01-13libbb: introduce and use chdir_or_warn()Denys Vlasenko
2021-12-26httpd: fix compile failure if !FEATURE_HTTPD_RANGESDenys Vlasenko
2021-12-17httpd: do not send Last-Modified / ETag / Content-Length for error pagesDenys Vlasenko
2021-12-17httpd: don't send Content-Length in error pages headerDenys Vlasenko
2021-10-08httpd: if range is not specified, correctly fall back to read/write loopDenys Vlasenko
2021-10-08help: s/Don't daemonize/Run in foreground/gDenys Vlasenko
2021-09-10httpd: fix config depsDenys Vlasenko
2021-09-09httpd,telnetd: make default port configurableSergey Ponomarev
2021-05-05httpd: add comment about faster rejection of denied IPsDenys Vlasenko
2021-05-05httpd: if no request was given at all, close the socket without generating er...Denys Vlasenko
2021-05-05httpd: no need to strcpy() when we only need to copy one byteDenys Vlasenko
2021-05-04httpd: avoid extra stat() calls for "GET /dirname/" caseDenys Vlasenko
2021-05-04httpd: avoid one stat() call for "GET /dirname" caseDenys Vlasenko
2021-05-04httpd: support HEAD requests even in !CGI configDenys Vlasenko
2021-05-04httpd: move proxy check before URL duplication and request type checkDenys Vlasenko
2021-05-04httpd: cgi-bin support for DELETE, PUT, OPTIONS etc methodsAlexander Sack
2021-02-03libbb: introduce and use fputs_stdoutRon Yorston
2021-01-04Fix httpd compilation on the FreeBSDAlex Samorukov
2020-12-30httpd: fix offset for sendfileMaxim Storchak
2020-11-28libbb: change decode_base32/64 API to return the end of _dst_, not _src_.Denys Vlasenko
2020-11-27libbb: smaller and faster decode_base64()Denys Vlasenko
2020-10-06httpd: code shrinkXabier Oneca
2020-08-16httpd: Make Deny/Allow by IP config support optionalSergey Ponomarev
2020-08-16httpd: Support caching via ETag headerSergey Ponomarev
2020-08-16httpd: Don't add Last-Modified header to responseSergey Ponomarev
2020-08-16httpd: Don't add Date header to responseSergey Ponomarev
2020-08-15httpd: Update to HTTP/1.1Sergey Ponomarev
2020-06-09httpd: allow '-h' to work when daemonized with NOMMU enabledRon Yorston
2020-04-30httpd: permit non-default home directory with NOMMU enabledRon Yorston
2019-07-02libbb: reduce the overhead of single parameter bb_error_msg() callsJames Byrne
2019-06-07httpd: .js is "application/javascript", not "application/x-javascript"Denys Vlasenko
2019-06-07httpd: add js to built in MIME types listDenys Vlasenko
2019-06-07httpd: add svg to built in MIME types listVicente Jimenez Aguilar
2019-04-19httpd: do disable header reading timeout even if proxyingDenys Vlasenko
2019-04-19httpd: use full size of iobuf[] when piping CGI dataDenys Vlasenko
2019-04-19httpd: do not set alarm() timeout if we read cached headerDenys Vlasenko
2019-04-19httpd: deindent code block, no code changesDenys Vlasenko
2019-04-19httpd: require "HTTP/xyz" at the end of request lineDenys Vlasenko
2019-04-18httpd: pass authorization header to CGI if not BasicAlexander Vickberg
2019-04-17httpd: When sending gzipped content use content-length headerAlexander Vickberg
2019-04-16httpd: extract query string only after proxying checkDenys Vlasenko
2019-04-16httpd: make rmt_ip variable localDenys Vlasenko
2019-04-16httpd: check denied IPs even before reading 1st query lineDenys Vlasenko
2019-04-16httpd: do not decode URL and headers if proxying - send all verbatimDenys Vlasenko
2019-04-16httpd: remove duplicate "decode URL escape sequences" codeDenys Vlasenko
2019-04-16httpd: put all headers into environment as HTTP_UPPERCASED_HEADER=valDenys Vlasenko
2019-04-16httpd: fix handling of EOF in get_line()Denys Vlasenko
2019-04-16httpd: add missing {}Denys Vlasenko