summaryrefslogtreecommitdiff
path: root/libbb/xconnect.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Major coreutils update.Manuel Novoa III2003-03-191-3/+3
|
* use #ifdef CONFIG_* instead of #if CONFIG_*Glenn L McGrath2002-11-261-1/+1
|
* - Forgot to cvs add bb_asprintf.c (from vodz' patch #50)Robert Griebl2002-07-191-3/+2
| | | | | | | | | | - Applied Joel Coltoff's xconnect patch: On both my host system and with mipsel-linux for my embedded systems the function getservbyname() gives the port number already in host order. In fact, this is how it was used by rdate in version 0.60.3. The snapshot I have of the development tree from July 12, 2002 takes the port number and stuffs it into htons() before it uses it. This causes bugs in rdate, telnet and wget. This patch fixes that.
* Applied vodz' patches #49 and #50 (with a small correction in runshell.c)Robert Griebl2002-07-191-0/+1
| | | | | | | | | #49: I found one memory overflow and memory leak in "ln" applet. Last patch reduced also 54 bytes. ;) #50: I found bug in loginutils/Makefile.in. New patch have also new function to libbb and aplied this to applets and other cosmetic changes.
* Brad Campbell <brad@seme.com.au> notes thatEric Andersen2002-07-111-1/+2
| | | | | xconnect.c needs #include <netinet/in.h> to compile if CONFIG_FEATURE_IPV6 is not defined
* A patch from Bart Visscher <magick@linux-fan.com> to add anEric Andersen2002-07-031-0/+78
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!