Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-20 | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | |
2006-10-08 | correct largefile support, add comments about it. | Denis Vlasenko | |
2006-10-08 | attempt to regularize atoi mess. | Denis Vlasenko | |
2006-10-07 | dd: make it recognize not only 'k' but 'K' too; | Denis Vlasenko | |
make it (partially) CONFIG_LFS-aware | |||
2006-10-05 | httpd: add -u user[:grp] support | Denis Vlasenko | |
2006-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||
2006-10-03 | lots of silly indent fixes | Denis Vlasenko | |
2006-09-30 | lsmod: repair indentation | Denis Vlasenko | |
httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos) | |||
2006-09-26 | httpd: sanitize indentation | Denis Vlasenko | |
2006-09-06 | Implement optional syslog logging using ordinary | Denis Vlasenko | |
bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually. | |||
2006-08-03 | Remove xcalloc() and convert its callers to xzalloc(). About half of them | Rob Landley | |
were using "1" as one of the arguments anyway, and as for the rest a multiply and a push isn't noticeably bigger than pushing two arguments on the stack. | |||
2006-08-03 | Attempt to fixup httpd.c to match svn 15767. | Rob Landley | |
2006-08-03 | Move declaration to be compatible with older gcc's. | "Robert P. J. Day" | |
2006-07-16 | Cleaup read() and write() variants, plus a couple of new functions like | Rob Landley | |
xlseek and fdlength() for the new mkswap. | |||
2006-05-27 | Consolidate #include <sys/time.h> so libbb.h does it. | Rob Landley | |
2006-05-26 | fix spelling mistakes | Mike Frysinger | |
2006-04-28 | More usage.h cleanups, with collateral changes to httpd. Specifically, | Rob Landley | |
most of our CONFIG entries switch stuff on instead of off when enabled, so fix the gratuitously reversed INETD thing. | |||
2006-04-14 | Patch from Robert P Day to remove standalone code from httpd. (Busybox has | Rob Landley | |
its own make standalone planned as a general solution to this for all applets.) | |||
2006-04-14 | Hard wiring configuration symbol values into the code defeats the purpose | Rob Landley | |
of _having_ configuration symbol values. Also, changing #ifdef CONFIG to #if ENABLE isn't nearly as useful as changing them to if (ENABLE) or USE()/SKIP()... | |||
2006-04-12 | - patch from Denis Vlasenko to add and use bb_xchdir() | Bernhard Reutner-Fischer | |
2006-04-12 | - patch from Denis Vlasenko to add bb_xbind() and bb_xlisten() | Bernhard Reutner-Fischer | |
2006-04-12 | - patch from Denis Vlasenko to add and use bb_xdaemon() | Bernhard Reutner-Fischer | |
2006-04-12 | - patch from Denis Vlasenko to add and use bb_xsocket() and to use | Bernhard Reutner-Fischer | |
bb_xopen some more while at it. Also use shorter boilerplate while at it. | |||
2006-04-11 | - httpd in inetd mode: POST from IE (6) ends up in 'cannot display page' | Bernhard Reutner-Fischer | |
Closes #827 | |||
2006-02-20 | Rename UNUSE() to SKIP(). | Rob Landley | |
2006-02-15 | demo (UN)USE_FEATURE... usage | "Vladimir N. Oleynik" | |
2006-01-31 | add feature: support for running scripts through an interpreter. Thanks ↵ | "Vladimir N. Oleynik" | |
Florian Schirmer <jolt@tuxbox.org> | |||
2006-01-30 | fix up annoying signed/unsigned and mixed type errors | Eric Andersen | |
2006-01-26 | for change previous log: close bug 186 | "Vladimir N. Oleynik" | |
2006-01-26 | close bug 190 | "Vladimir N. Oleynik" | |
2006-01-24 | close bug 657 | "Vladimir N. Oleynik" | |
2006-01-03 | fix comment documentation | Mike Frysinger | |
2005-12-26 | remove buffer overflow by Erik and decodeString problem by Glenn, add error ↵ | "Vladimir N. Oleynik" | |
check of decodeString as Apache | |||
2005-12-20 | remove debug feature for production | "Vladimir N. Oleynik" | |
2005-12-02 | remove warnings if compile with -W, use ENABLE_FEATURE vs CONFIG_FEATURE | "Vladimir N. Oleynik" | |
2005-09-26 | revert wait zombie, it have as linux-specific signal(SIG_CHLD,SIG_IGN) ↵ | "Vladimir N. Oleynik" | |
already, do not confuse me\! | |||
2005-09-20 | - rename libbb's password helpers as suggested in libbb.h | Bernhard Reutner-Fischer | |
my_getpwnam -> bb_xgetpwnam /* dies on error */ my_getgrnam -> bb_xgetgrnam /* dies on error */ my_getgrgid -> bb_getgrgid my_getpwuid -> bb_getpwuid my_getug -> bb_getug | |||
2005-09-19 | destroy bug #421 | "Vladimir N. Oleynik" | |
2005-09-01 | Tracking system but #4: php needs the environment variable SCRIPT_FILENAME. | Rob Landley | |
2005-07-20 | applying fix for: | Paul Fox | |
0000185: httpd infinite loop when piping to CGI script | |||
2005-06-23 | characters encoded as html should have a trailing semicolon | Eric Andersen | |
to be interpreted properly | |||
2004-10-08 | last_patch139.gz from Vladimir N. Oleynik: | Eric Andersen | |
>I also don't mean to disagree about leaving 30x status codes until after >1.0. In fact, although redirecting http://host/dir to http://host/dir/ >with a 301 is common practice (e.g. Apache, IIS), AFAIK it isn't >actually required (or mentioned) by the HTTP specs. Ok. Attached patch have 302 and 408 implemented features. --w vodz | |||
2004-08-26 | Vladimir N. Oleynik writes: | Eric Andersen | |
Ming-Ching, >>No. Here there are no mistakes. >>You using POST metod. >>For get data you should read from stdin CONTENT_LENGTH bytes. >Hower as I posted a little while ago, there is indeed a bug >in POST method if the CONTENT_LENGTH is bigger >than sizeof(wbuf[128]). So if your CGI script is expecting to >read the full CONTENT_LENGTH, it might block forever, >because it will only transfer sizeof(wbuf) to the CGI. Ok, Ok. I should find time to understand with a problem. Try attached patch. --w vodz | |||
2004-04-14 | Larry Doolittle writes: | Eric Andersen | |
This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry | |||
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2004-03-05 | Patch from Steven Scholz to fix compiler warnings | Glenn L McGrath | |
2004-02-24 | Joe.C, joe at numa dot com dot tw writes: | Eric Andersen | |
Hi, When downloading files over slow network (e.g. wireless/ internet) using IE, sometimes it will stop downloading and show error message 'connection closed' when the download is almost complete. This is because IE can't handle server close connection properly. Apache http_main.c fix this problem by close the connection after client close the connection. This patch do exactly the same thing. Please consider include this patch. Joe.C | |||
2004-02-04 | Joe.C writes: | Eric Andersen | |
Hi, When httpd connection is closed, bosybox httpd will not stop reading from CGI program. This patch fix this problem. It check the return value of bb_full_write and stop reading from CGI if the connection is closed. Please apply this patch. Joe.C | |||
2003-12-19 | Patch from Stephane Billiart: | Eric Andersen | |
This removes references to config->remoteuser when CONFIG_FEATURE_HTTPD_CGI=y but CONFIG_FEATURE_HTTPD_BASIC_AUTH is not set | |||
2003-12-08 | Stop sending data to the client after the first failure. | Glenn L McGrath | |
Patch by Joe.C |