aboutsummaryrefslogtreecommitdiff
path: root/networking
AgeCommit message (Collapse)Author
2002-09-30last_patch58 from vodz:Eric Andersen
Ok. I generate patch for include to busybox-devel my work with top (original author give me maintaining) and telnetd (my support and unofficial maintaining) applets. Docs changes also: added awk, netstat, time applets to list ;)
2002-09-15Use busybox's show_usage function for helpGlenn L McGrath
2002-09-10Fix for handling of "tftp -l -" from Jean Wolter <jw5@os.inf.tu-dresden.de>Eric Andersen
2002-08-26Eliminate use of obsolete sys_errlist[]Eric Andersen
-Erik
2002-08-23Remove empty loopsGlenn L McGrath
2002-08-23Use static instead of extern, braces around if's, run through indentGlenn L McGrath
2002-08-23ansifyAaron Lehmann
2002-08-23remove duplicate definition of GAaron Lehmann
caught by tinycc
2002-08-22Run through indent, fix commentGlenn L McGrath
2002-08-22Run through indent, fix commentsGlenn L McGrath
2002-08-21Cleanups. These SHOULD make the binary a lot smaller. But they don't.Aaron Lehmann
CURSE GCC
2002-08-21Disable debuggingGlenn L McGrath
2002-08-21Clean up udhcpd a bit. Constify. Staticize. Remove these functions andAaron Lehmann
inline their contents: print_usage, pidfile_delete, and background.
2002-08-21New applet, udhcp clientGlenn L McGrath
2002-07-24Commited patch from bug #1182Robert Griebl
Although ssrat@mailbag.com says this is not GNU behaviour, it really *is* (man nslookup)
2002-07-12Accept the --passive-ftp cmd.line option. We always use passive ftp mode,Robert Griebl
so it doesn't hurt (adds compatibility though)
2002-07-11Fixup warnings and undefined operations that show up in gcc-3.1Eric Andersen
-Erik
2002-07-03Scrub pwd.h and grp.h handling so we don't have to play anyEric Andersen
silly games. -Erik
2002-07-03A patch from Bart Visscher <magick@linux-fan.com> to add anEric Andersen
xconnect helper routine which does: -address and port resolving -tries to connect to all resolved addresses until connected -uses getaddrinfo, so works for IPv6 too This patch also ports rdate, telnet, and wget to use the new xconnect function. Thanks Bart!
2002-07-03This patch from Bart Visscher <magick@linux-fan.com> addsEric Andersen
IPV6 support to busybox. This patch does the following: * Add IPv6 support to libbb * Enable IPv6 interface address display * Add IPv6 config option * Adds ping6, an adaptation of the ping applet for IPv6 * Adds support routines for ping6: - xgethostbyname2 - create_icmp6_socket * Adds ifconfig support for IPv6 * Add support IPv6 to netstat * Add IPv6 support to route Thanks Bart!
2002-06-23Remove advertising clauses in accordance withAaron Lehmann
ftp://ftp.cs.berkeley.edu/ucb/4bsd/README.Impt.License.Change
2002-06-22Apply vodz' last_patch44 -- cleanup several chars to be const, fixEric Andersen
rotten error handling, kill spare \n's, etc
2002-06-06Email addr fixEric Andersen
2002-06-06Patch from Gyepi SAM <gyepi@praxis-sw.com>:Eric Andersen
Fixed up domain removal for local domains. GNU traceroute does not do this. I don't know why we do. Fixed incorrect argument for reverse resolution. Clean up cruft that appears when CONFIG_FEATURE_TRACEROUTE_VERBOSE is defined
2002-06-06Per discussion with vodz, Tim's changes do not seem to make sense.Eric Andersen
Revert them. -Erik
2002-06-04Fix for broken handling off BusyBox's own pwd/grp implementationsRobert Griebl
[Parts of this patch may overlap with my other two patches]
2002-05-18ping return 1 if can't pingTim Riker
2002-05-16Reduced code size for new -e flag (suggested by vodz)Robert Griebl
2002-05-14Added support for -Y|--proxy=on/off to wgetRobert Griebl
2002-05-14This patch adds -e (extended information) to route and -r/-e (show routingRobert Griebl
tables/extended information) to netstat. This makes them behave (more) like their GNU counterparts.
2002-05-05Tom Oehser noticed that we were lacking the SO_REUSEADDR flag.Eric Andersen
2002-04-27uClibc supports struct _res these days...Eric Andersen
2002-04-26Add netcat -i option, per patch from Cristian Ionescu-IdbohrnEric Andersen
<cristian.ionescu-idbohrn@axis.com>
2002-04-26Fix bugsEric Andersen
2002-04-26Minor formattingEric Andersen
2002-04-26add missing void, still has issues thoughTim Riker
2002-04-26Forward port patch from Przemyslaw Czerpak <druzus@polbox.com>:Eric Andersen
1. busybox-telnet dosn't inform server about the size of terminal screen. In the world of xterminals and frame buffers it's rather horrible to use fixed 80x24 region in upper-left corner of screen/window. 2. If client sends character 0x0d to the server then sends character 0x0a the server eat the second byte (0x0a) - it's described in telnet RFC. Client should send two bytes ( 0x0d + 0x0a or 0x0d + 0x00 ) insted of one 0x0d byte. 3. busybox telnet implementation wasn't 8bit clean (look at 0xff byte). I need it because I have to use binray transfer like rz/sz. So when I resloved the problem (2) I corrected this one two. This also contains a small cleanup patch from vodz, and some minor editing by me.
2002-04-17* networking/wget.c (wget_main): Check return value of safe_fwrite.Matt Kraai
2002-04-15Patch from Ben Low <ben@titr.uow.edu.au> to allow tftp to workEric Andersen
with stdin as well as stdout.
2002-04-13Teach tftp to direct the fetched file to stdout when theEric Andersen
user specifies "-l -" -Erik
2002-04-12Completely rework the config system so that it no longer annoys me to work onEric Andersen
the busybox development tree. This eliminates the use of recursive make, and once again allows us to run 'make' in a subdirectory with the expected result. And things are now much faster too. Greatly improved IMHO... -Erik
2002-03-21Doh! I broke ping when removing the nested function.Eric Andersen
This patch from vodz fixes it again.
2002-03-20Patch from Jeff Studer <jstuder@aquilagroup.com> to supply a defaults forEric Andersen
localfilename from remotefilename, and for remotefilename from localfilename when the other one is not supplied.
2002-03-20Cave to pressure (2 months later). Eliminate using aEric Andersen
nested function, which is a purely unremovable gcc-ism... -Erik
2002-03-19* networking/wget.c (parse_url): Allocate a string for the empty path.Matt Kraai
* testsuite/wget/wget-handles-empty-path: New.
2002-02-012002-01-30 Neal H Walfield <neal@cs.uml.edu>Matt Kraai
* networking/ping.c (hostname): Removed. [CONFIG_FEATURE_FANCY_PING] (noresp): Moved from here . . . [CONFIG_FEATURE_FANCY_PING] (ping:noresp): . . . to here. Use H->h_name, not hostname. [CONFIG_FEATURE_FANCY_PING] (ping): Do not copy H->h_name into hostname. Use H->h_name directly. [!CONFIG_FEATURE_FANCY_PING] (hostent): New global variable. [!CONFIG_FEATURE_FANCY_PING] (pingstats): Use hostent in favor of the now obsolete hostname global variable. [!CONFIG_FEATURE_FANCY_PING] (ping): Likewise. No need to copy H; use hostent instead. [!CONFIG_FEATURE_FANCY_PING] (ntransmitted, nreceived, nrepeats, pingcount, myid, options, tmax, tsum): Removed superfluous zero initializers.
2001-12-20Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.Matt Kraai
2001-11-10Latest patch from vodz:Eric Andersen
-- reverse resolve network name and cache in route and ifconfig applets, fix print nslookup server name if compile without uClibc, fix route crashe 'route add', fix warnings compile networking and pwd_grp applets
2001-11-10Can't use RESERVE_CONFIG_BUFFER here since the allocationEric Andersen
size varies meaning BUFFERS_GO_ON_STACK will fail
2001-10-31Add netstat applet, submitted by Bart Visscher <magick@linux-fan.com>Eric Andersen