Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-03-10 | Patch from Denis Vlasenko turning static const int (which gets emitted into | Rob Landley | |
the busybox binary) into enums (which don't). | |||
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2006-01-30 | fix up annoying signed/unsigned and mixed type errors | Eric Andersen | |
2006-01-25 | just whitespace | Tim Riker | |
2005-11-28 | eliminate mixed declaration, to support older compilers a little longer. | Paul Fox | |
2005-10-28 | Rob Sullivan sent in some cleanups, which I beat on slightly. | Rob Landley | |
2005-07-20 | applying fix for: | Paul Fox | |
0000026: poor man's "scriptable" telnet | |||
2004-09-14 | Patch from Felipe Kellermann, remove some unnecessary dups, i declared a few ↵ | Glenn L McGrath | |
extra const's also. | |||
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2004-02-22 | Fernando Silveira writes: | Eric Andersen | |
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! | |||
2004-01-17 | Modify bb_lookup_port to allow the protocol to be specified, allowing | Glenn L McGrath | |
/etc/services support for inetd, netcat and tftp. | |||
2003-12-20 | Change interface to bb_lookup_host, dont try and set port inside this | Glenn L McGrath | |
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. | |||
2003-10-31 | Rework wget, the xconnect interface, and its various clients | Eric Andersen | |
in order to fix the problems with round robin DNS reported by Andrew Flegg: http://busybox.net/lists/busybox/2003-October/009579.html This removes the ipv6 specific xconnect dns lookups. I do not see why that would need to be special cased for ipv6 as was done, but that will just have to be tested. So IPV6 people -- please test this change! -Erik | |||
2003-09-15 | Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize) | Eric Andersen | |
to ensure proper fallback behavior on, i.e. serial consoles. -Erik | |||
2003-07-14 | Update a bunch of docs. Run a script to update my email addr. | Eric Andersen | |
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2002-08-23 | remove duplicate definition of G | Aaron Lehmann | |
caught by tinycc | |||
2002-07-11 | Fixup warnings and undefined operations that show up in gcc-3.1 | Eric Andersen | |
-Erik | |||
2002-07-03 | A patch from Bart Visscher <magick@linux-fan.com> to add an | Eric 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-06-06 | Email addr fix | Eric Andersen | |
2002-04-26 | Fix bugs | Eric Andersen | |
2002-04-26 | Minor formatting | Eric Andersen | |
2002-04-26 | add missing void, still has issues though | Tim Riker | |
2002-04-26 | Forward 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. | |||
2001-12-20 | Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !. | Matt Kraai | |
2001-11-10 | Latest 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-10-24 | Major rework of the directory structure and the entire build system. | Eric Andersen | |
-Erik | |||
2001-06-26 | Vladimir's last_patch_15 | Glenn L McGrath | |
2001-05-16 | Add xgethostbyname and herror_msg* functions. | Matt Kraai | |
2001-05-07 | Patch from Jim McQuillan to pass the terminal type to the remote host. | Eric Andersen | |
2001-03-19 | Another cleanup patch from Jeff Garzik <jgarzik@mandrakesoft.com> | Eric Andersen | |
2001-03-17 | Fix a bug pointed out by Rob Landley <rlandley@austin.rr.com>, where | Eric Andersen | |
setup_sockaddr_in was zeroing the sizeof a pointer, not the sizeof the struct, which was obviously what was intended. Thanks Rob, -Erik | |||
2001-03-09 | A cleanup patch from Jeff Garzik to static-ify a number of | Eric Andersen | |
namespace polluting things that really should be static. | |||
2001-02-20 | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric Andersen | |
header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik | |||
2001-02-14 | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | |
done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | |||
2001-01-31 | Removed trailing \n from error_msg{,_and_die} messages. | Matt Kraai | |
2001-01-24 | Remove the warning messages. By consensus, netkit-tiny doesn't | Eric Andersen | |
need to happen. | |||
2001-01-24 | Fix spelling. s/maintainence/maintenance/ | Eric Andersen | |
2001-01-23 | #define -> static const int. Also got rid of some big static buffers. | Mark Whitley | |
2001-01-22 | Warn about apps that will be going away in release 0.50 | Eric Andersen | |
-Erik | |||
2001-01-18 | Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to | Matt Kraai | |
Vladimir N. Oleynik. | |||
2000-12-18 | Change calls to error_msg.* and strerror to use perror_msg.*. | Matt Kraai | |
2000-12-07 | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | |
compliant with the style guide. Everybody rebuild your tags file! | |||
2000-09-25 | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | |
-Erik | |||
2000-08-31 | Fix spelling error | Eric Andersen | |
-Erik | |||
2000-07-28 | Fixed to pass -Wundef | Pavel Roskin | |
2000-07-16 | Extract usage information into a separate file. | Matt Kraai | |
2000-06-14 | Integrate Tomi Ollila's telnet. Costs 3k. :) | Eric Andersen | |
-Erik | |||
2000-05-12 | Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP | Erik Andersen | |
which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik | |||
2000-05-01 | Some accrued fixes/updates. | Erik Andersen | |
* cp/mv now accepts (and ignores) the -f flag, since it always does force anyway * tail can now accept -<num> commands (e.g. -10) for better compatibility with the standard tail command * added a simple id implementation; doesn't support supp. groups yet |