Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-30 | introduce and use bb_basename() | Denis Vlasenko | |
function old new delta bb_basename - 26 +26 sv_main 1226 1225 -1 passwd_main 1985 1983 -2 showdirs 482 478 -4 sendCgi 1811 1807 -4 make_device 1354 1350 -4 handleIncoming 2443 2439 -4 func_name 82 78 -4 service_name 2292 2285 -7 main 909 901 -8 cmp_main 555 547 -8 test_main 434 422 -12 act 228 216 -12 find_pair 180 164 -16 rmmod_main 298 280 -18 find_pid_by_name 156 134 -22 modprobe_main 1606 1576 -30 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/16 up/down: 26/-156) Total: -130 bytes text data bss dec hex filename 734933 3028 14400 752361 b7ae9 busybox_old 734801 3028 14400 752229 b7a65 busybox_unstripped | |||
2007-06-25 | Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms ↵ | Denis Vlasenko | |
<wharms@bfs.de>) | |||
2007-06-23 | httpd: NOMMU fixes by Alex Landau <landau_alex@yahoo.com> | Denis Vlasenko | |
2007-06-09 | httpd: move data off bss. | Denis Vlasenko | |
httpd: do not realpath() for SCRIPT_FILENAME - it resolves symlinks but it should not: - /* SCRIPT_FILENAME required by PHP in CGI mode */ - if (!realpath(purl + 1, realpath_buff)) - goto error_execing_cgi; - setenv1("SCRIPT_FILENAME", realpath_buff); + + /* SCRIPT_FILENAME required by PHP in CGI mode */ + fullpath = concat_path_file(home_httpd, purl); + setenv1("SCRIPT_FILENAME", fullpath); | |||
2007-05-26 | usage.c: remove reference to busybox.h | Denis Vlasenko | |
*: s/include "busybox.h"/include "libbb.h" | |||
2007-04-18 | "Unify base64 handling" is done, remove TODO | Denis Vlasenko | |
2007-04-13 | teach find_root_device to deal with /dev/ subdirs | Denis Vlasenko | |
(by "Kirill K. Smirnov" <lich@math.spbu.ru>) | |||
2007-04-11 | add more convenient defines for [NO]MMU: | Denis Vlasenko | |
"#ifndef BB_NOMMU" is a double negative | |||
2007-04-04 | - sed -e "s/char[[:space:]]*\*[[:space:]]*argv\[\]/char **argv/g" | Bernhard Reutner-Fischer | |
2007-03-26 | Attempt to get more applets compile for NOMMU. | Denis Vlasenko | |
TODO_config_nommu documents what I managed to compile so far (yay! msh works! cool). inetd, telnetd, httpd still do not compile. TODO Also make fork(), daemon() produce warnings on compile stage (in addition to erros on link stage). | |||
2007-03-26 | move everything to new NOMMU helpers, except udhcp | Denis Vlasenko | |
2007-03-07 | httpd: make httpd usable for NOMMU CPUs | Denis Vlasenko | |
2007-03-07 | clean up accumulated whitespace damage | Denis Vlasenko | |
2007-03-05 | httpd: run interpreter for configured file extensions in any dir, | Denis Vlasenko | |
not only in /cgi-bin/ | |||
2007-03-05 | httpd: fix breakage (introduced by me) | Denis Vlasenko | |
2007-02-13 | httpd: a little bit more correct handling of CGI "HTTP/xxx" output | Denis Vlasenko | |
2007-02-11 | httpd: fix for POSTDATA handling bugs: | Denis Vlasenko | |
erroneous close(0) full_read -> safe_read (with explanation) | |||
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
2007-01-29 | preparatory patch for -Wwrite-strings #4 | Denis Vlasenko | |
2007-01-22 | cleanups: unnecessary casts, unified const_1, eliminate cross-.c file | Denis Vlasenko | |
prototypes (heresy!), add spaces in places like "flags&NETSTAT_CONNECTED", removed unused #defines, #ifdef -> #if, use uint32_t for ipv4 addrs. | |||
2007-01-14 | httpd: use fd#1 in inetd mode | Denis Vlasenko | |
inetd: micro style fix | |||
2007-01-12 | next part of ipv6-ization is here: wget & httpd | Denis Vlasenko | |
2007-01-11 | Trailing whitespace removal over entire tree | Denis Vlasenko | |
2007-01-07 | httpd: stop adding our own "Content-type:" to CGI output | Denis Vlasenko | |
2007-01-03 | httpd: read cgi output with full_read, not safe_read | Denis Vlasenko | |
(avoids mangling of HTTP headers) | |||
2007-01-03 | convert calloc to xzalloc | Denis Vlasenko | |
fix sleep-on-die option | |||
2006-12-30 | done a dozen of randconfig test. guess what? ALL failed... | Denis Vlasenko | |
these are resulting fixes | |||
2006-11-29 | httpd: fix decode of '/' when called via -d | Denis Vlasenko | |
2006-11-28 | od: sometime ago I landed BIG od implementation | Denis Vlasenko | |
from coreutils. My fault. This commit contains cleanups and size reductions. | |||
2006-11-24 | header_verbose_list: stop truncating file size in listing | Denis Vlasenko | |
2006-11-22 | introduce setsockopt_reuseaddr(int fd), setsockopt_broadcast(int fd), | Denis Vlasenko | |
use them where appropriate. 200 bytes saved | |||
2006-11-21 | httpd: comment on QUERY_STRING | Denis Vlasenko | |
2006-11-21 | httpd: add link to docs | Denis Vlasenko | |
2006-11-21 | wget: add TODO | Denis Vlasenko | |
2006-11-21 | httpd: slight reduction of #ifdef forest | Denis Vlasenko | |
few other applets: #ifdef CONFIG_ -> #if ENABLE_ traceroute: fix exposed bugs defconfig: update | |||
2006-11-21 | httpd: fix cgi-bin/index.cgi support, add example of it, | Denis Vlasenko | |
stat: fix end-of-line if format is specified (wasn't printing it), fix %z (time) format to match coreutils 6.3 | |||
2006-11-21 | httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net! | Denis Vlasenko | |
2006-11-21 | httpd: add support for directory indexer (cgi-bin/index.cgi) | Denis Vlasenko | |
2006-11-21 | httpd: get rid of big, useless blocks (deindent, | Denis Vlasenko | |
bring code under 80 columns) | |||
2006-11-21 | httpd: More robust Content-length: parsing, | Denis Vlasenko | |
code reorganization (less indented) | |||
2006-11-17 | httpd: make Bernhard happier | Denis Vlasenko | |
2006-11-16 | httpd: reduce ifdef forest. comment out redundant PATH setting | Denis Vlasenko | |
2006-11-16 | httpd: | Denis Vlasenko | |
fix union aliasing bug symptom: wget of non-existent file gets redirected to /text/html/something on second and subsequend wget attempts fix double-free bug symptom: glibc caught double-free (we didn't NULL config->xxx ptrs after free) | |||
2006-11-16 | httpd: add -i (inetd) and -f (foreground) otions. | Denis Vlasenko | |
-i makes possible to run httpd in both inetd and standalone mode without recompile (or need to have two different binaries) | |||
2006-11-16 | httpd: stop being silly with setenv | Denis Vlasenko | |
2006-11-10 | httpd: cosmetic fixes (the bug which was being hunted down | Denis Vlasenko | |
turned out to be nonexistent :) | |||
2006-11-05 | httpd: sendCgi() forked child needs to close opened | Denis Vlasenko | |
server socket and accepted socket | |||
2006-10-29 | find: a lot more compliant to 'standard' find | Denis Vlasenko | |
(we were not respecting order of actions!). Add -o and -a handling. | |||
2006-10-28 | ls: cleanup part 1 | Denis Vlasenko | |
2006-10-20 | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | |