summaryrefslogtreecommitdiff
path: root/networking (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix indentingEric Andersen2004-04-061-12/+12
|
* Patch from Thomas Winkler:Eric Andersen2004-03-311-3/+9
| | | | | | | ifconfig did not look up hostnames, so ifconfig lo localhost would not work, you have to do ifconfig lo 127.0.0.1
* s/fileno\(stdin\)/STDIN_FILENO/gEric Andersen2004-03-274-6/+6
| | | | s/fileno\(stdout\)/STDOUT_FILENO/g
* Oops.. got a bit to aggressive with size optimization and global replace. :-(Manuel Novoa III2004-03-191-3/+5
|
* Oops. Using the wrong variable was a rather stupidEric Andersen2004-03-151-1/+1
| | | | thing for me to do.
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-1555-421/+420
|
* In spite of the feature freeze, check in a complete rework of route whichManuel Novoa III2004-03-101-478/+486
| | | | | | | | fixes some bugs, adds some error checking, and removes _lots_ of bloat. Text size on i386... old new ipv6 5425 3523 no ipv6 3143 2193
* Fix/eliminate use of atolEric Andersen2004-03-065-12/+22
|
* Patch by Andrew Victor,Glenn L McGrath2004-03-052-5/+10
| | | | | | | | | | | In arpping.h, fix structure alignment of "struct arpMsg". GCC can insert padding in the structure which causes udhcpd to send an invalid ARP packet on the network. It will then not receive a valid reply, which can cause it to assign an IP address that's already in use on the network. (With kernels before 2.4.20, the "struct ethhdr" in linux/if_ether.h wasn't marked as packed. This is also an issue if your toolchain was built with a pre-2.4.20 kernel).
* Fix a typo, patch by Andrew VictorGlenn L McGrath2004-03-051-1/+1
|
* Fix debugging output, patch by Hideki IWAMOTOGlenn L McGrath2004-03-051-1/+1
|
* Patch from Steven Scholz to fix compiler warningsGlenn L McGrath2004-03-051-5/+7
|
* Quick fix for tftp truncation bugGlenn L McGrath2004-02-261-1/+1
|
* Joe.C, joe at numa dot com dot tw writes:Eric Andersen2004-02-241-0/+14
| | | | | | | | | | | | | | | | 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
* Fernando Silveira writes:Eric Andersen2004-02-222-0/+95
| | | | | | | | | | | | | Hi, Well, I made this patch a long time ago (08/2002) because it was a need of a project, but had no time to send it to you. It adds support to `autologin' option of the telnet protocol. It has been used since made with busybox 0.60.3 at production and I had no problems with it. I have ported it to the HEAD revision of the CVS server (20040211) and I hope you enjoy and apply it to the official sources. :) Thanks a lot!
* Patch from Vodz, cleanup memory usage, send strdup error messages toGlenn L McGrath2004-02-221-11/+22
| | | | syslog.
* Patch from James Zhu, telnetd window resizing support.Glenn L McGrath2004-02-221-10/+28
|
* Patch from Hideki IWAMOTO, output debugging messages to stderrGlenn L McGrath2004-02-221-6/+6
|
* remove duplicate header declarationsGlenn L McGrath2004-02-221-14/+6
|
* Ptch by Hideki IWAMOTO, fix a bug preventing tftp from getting orGlenn L McGrath2004-02-221-2/+2
| | | | putting more than 0xffff blocks.
* No need to check proxy env variable twice, ignore proxy env variable ifGlenn L McGrath2004-02-221-14/+15
| | | | its set to 0
* Dont use same variable and struct nameGlenn L McGrath2004-02-181-35/+37
|
* FormattingGlenn L McGrath2004-02-181-142/+146
|
* remove debuggingGlenn L McGrath2004-02-181-7/+0
|
* Remove the unused CONFIG_FEATURE_HTTPD_SET_CGI_VARS_TO_ENV option.Eric Andersen2004-02-171-12/+0
|
* Mark Lord writes:Eric Andersen2004-02-171-2/+5
| | | | | | | | | | | | The config file processing for inetd in busybox-1.00-pre7 and newer is broken -- the saved command argv[] values overwrite each other. Patch to fix it is attached. Cheers -- Mark Lord Real-Time Remedies Inc.
* Joe.C writes:Eric Andersen2004-02-041-1/+3
| | | | | | | | | | | | 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
* Fix http proxy use, bytes were swapped1_00_pre6Glenn L McGrath2004-01-311-2/+2
|
* Use standard C99 typesEric Andersen2004-01-3019-117/+117
|
* Use proper C99 typesEric Andersen2004-01-301-2/+2
|
* Use proper C99 typesEric Andersen2004-01-301-16/+17
|
* Pascal Brisset writes:Eric Andersen2004-01-261-2/+2
| | | | | | | | | | uuencode fails to encode binary data because it right-shifts bytes as signed chars and keeps the duplicated sign bits. The original base64_encode() from wget/http.c is broken as well, but it is only used to encode ascii data. -- Pascal
* Redo getconfigent, save 150 bytes, still small memory leak whenGlenn L McGrath2004-01-201-80/+75
| | | | parsing invalid entries.
* Fix up a couple of bugs i introduced in yesterdays cleanup.Glenn L McGrath2004-01-181-18/+32
|
* Patch from Leif Lindholm (slightly modified by me), to fix httpGlenn L McGrath2004-01-171-1/+4
| | | | | | | redirection. Example of incorrect behaviour was the following url, busybox wget didnt get redirected to the busybox url as it should. http://freshmeat.net/redir/busybox/953/url_homepage/www.busybox.net
* Modify bb_lookup_port to allow the protocol to be specified, allowingGlenn L McGrath2004-01-176-29/+20
| | | | /etc/services support for inetd, netcat and tftp.
* The functions setconfig, enter and bump_nofile were only called once, marge ↵Glenn L McGrath2004-01-171-76/+50
| | | | | | them into the calling function.
* Use 1 line for function name and return value,Glenn L McGrath2004-01-171-116/+84
| | | | | remove dofork define/variable, dont check pid value is < or > than 0 if we know it is 0.
* Remove some defined statementsGlenn L McGrath2004-01-171-14/+7
|
* Changed #define names for common features (superficial)Glenn L McGrath2004-01-171-31/+22
|
* Use bb_get_chomped_line_from_fileGlenn L McGrath2004-01-171-18/+3
|
* Fix a bug of mine, identified by Stephane BilliartGlenn L McGrath2003-12-271-3/+2
|
* it should work even if you don't assign a pidfileRuss Dill2003-12-261-6/+7
|
* fix a long standing underallocation bugRuss Dill2003-12-241-2/+5
|
* move debugging to safe place (before vfork)Russ Dill2003-12-241-3/+2
|
* Allow recieving file to stdout, sending files from stdin, use the '-'Glenn L McGrath2003-12-201-35/+37
| | | | filename. Save a variable.
* display the port number number correctly, other minor optimisationsGlenn L McGrath2003-12-201-30/+20
|
* Change interface to bb_lookup_host, dont try and set port inside thisGlenn L McGrath2003-12-203-28/+20
| | | | | | | | function as there is no gracefull way of handling failures. Rename bb_getport to bb_lookup_port, allow a default port to be specified so it always returns a correct value. Modify ftpgetput/rdate/wget to use the new interface. wget/rdate now use etc/services with a falback default value.
* Use getopt_ulflagsGlenn L McGrath2003-12-191-58/+50
|
* Patch from Fillod Stephane:Eric Andersen2003-12-191-1/+10
| | | | | * While I'm at it, there's also a "telnetd.patch" which maps CRLF to CR, like netkit-telnet does, required by the loosy Windows telnet clients.