summaryrefslogtreecommitdiff
path: root/networking/udhcp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch from Shaun Jackman:Rob Landley2005-05-044-14/+5
| | | | | | Replace uptime with time(NULL). time is more portable than uptime and eliminates the need to define uptime, reducing code size slightly.
* Patch from Bernhard Fischer to make a bunch of symbols staticEric Andersen2005-04-161-1/+1
| | | | which were otherwise cluttering the global namespace.
* In Bug 209, bernhardf writes:Mike Frysinger2005-04-161-12/+12
| | | | | | | | | | struct named { named_field: init, }; appear to be depraced by now; rather use C{99} format as in struct named { .named_field = init, };
* merge from udhcp moduleMike Frysinger2004-12-066-4/+30
|
* Wade Berrier writes:Eric Andersen2004-10-088-5/+253
| | | | | | | | | | | | | | | | | | | Hello, Here's a patch for a first attempt at static leases for udhcpd. Included in the tarball are 2 files (static_leases.c, static_leases.h) and a patch against the latest cvs. In the config file you can configure static leases with the following format: static_lease 00:60:08:11:CE:4E 192.168.0.54 static_lease 00:60:08:11:CE:3E 192.168.0.44 Comments/suggestions/improvements are welcome. Wade
* egor duda writes:Eric Andersen2004-10-082-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | Hi! I've created a patch to busybox' build system to allow building it in separate tree in a manner similar to kbuild from kernel version 2.6. That is, one runs command like 'make O=/build/some/where/for/specific/target/and/options' and everything is built in this exact directory, provided that it exists. I understand that applyingc such invasive changes during 'release candidates' stage of development is at best unwise. So, i'm currently asking for comments about this patch, starting from whether such thing is needed at all to whether it coded properly. 'make check' should work now, and one make creates Makefile in build directory, so one can run 'make' in build directory after that. One possible caveat is that if we build in some directory other than source one, the source directory should be 'distclean'ed first. egor
* use busybox sysinfo structRuss Dill2004-05-192-1/+1
|
* Fix a compile problemEric Andersen2004-05-191-2/+1
|
* fix timewarp in client (server fix later)Russ Dill2004-05-194-6/+16
|
* remove uneccessary check (already done in pidfile.c)Russ Dill2004-05-191-6/+4
|
* fix memory leak caused by switch to vforkRuss Dill2004-05-191-3/+4
|
* Update my email address, document some of my tasks in the AUTHORS fileGlenn L McGrath2004-04-251-1/+1
|
* Larry Doolittle writes:Eric Andersen2004-04-149-11/+11
| | | | | | | | | | | | | | | | | | | | | | 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
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-1525-193/+192
|
* 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
|
* Use standard C99 typesEric Andersen2004-01-3019-117/+117
|
* 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
|
* Finish remerging busybox udhcp and udhcp. Some cleanups as well.Russ Dill2003-12-1825-284/+509
|
* clean up some bad, bad formattingRuss Dill2003-12-161-48/+49
|
* include headers with prototypes to make sure prototypes matchRuss Dill2003-12-168-1/+9
|
* remove reference to missing header file which is breaking the buildEric Andersen2003-12-161-1/+0
|
* revert removal of defineRuss Dill2003-12-161-1/+1
|
* forgotten includeRuss Dill2003-12-161-0/+1
|
* why the complication of a static string rather than a define? gcc isn't dumbRuss Dill2003-12-163-2/+5
|
* start attempting to bring udhcp in busybox back to the state where it is ↵Russ Dill2003-12-163-6/+80
| | | | (ideally) an exact copy of udhcp outside of busybox so that its easy to merge back and forth
* when compiled standalone, udhcp needs these headersRuss Dill2003-12-161-0/+2
|
* whoopsRuss Dill2003-12-161-1/+1
|
* not sure who made this change, but it certainly mucks things up (note ↵Russ Dill2003-12-161-9/+13
| | | | 'fwrite(leases, ...'), adds a bit more code, and some stack overhead. Anywho, this fixes it, and retains the spirit of what the submitter of this change was attempting to acheive (the entire lease is written at once in a struct)
* make udhcp work under uclinux, to an extentRuss Dill2003-12-152-1/+7
|
* options is a pretty common symbol, bad idea to use as a global in udhcp when ↵Russ Dill2003-12-155-16/+17
| | | | compiling into busybox
* Ulrich Marx writes:Eric Andersen2003-11-141-0/+2
| | | | | | | | | | | | | | | hello i had some trouble with the filedescriptor in udhcp. Two things happened on my device: 1.) broken or not connected cable (no dhcp-server) 2.) daemonizing (starting with option -b) i got a filedescriptor fd=0 from function raw_socket, after daemonizing (daemon call) the fd is closed. Client can't recieve data's anymore. i fixed this problem (like pidfile handling):
* Andreas Mohr writes:Eric Andersen2003-10-221-1/+1
| | | | | | | | | | | the busybox menuconfig triggered my "inacceptable number of spelling mistakes" upper level, so I decided to make a patch ;-) I also improved some wording to describe some things in a better way. Many thanks for an incredible piece of software! Andreas Mohr, random OSS developer
* Allow one to detect and handle the case where no lease could be obtainedGlenn L McGrath2003-09-011-0/+1
| | | | | via DHCP. (Just add a section "failed" to your script.) Patch by Steven Scholz
* "Without this patch, udhcpcd output may be buffered and delayed forGlenn L McGrath2003-08-301-0/+2
| | | | for minutes if stdout is not a tty." -vda@
* Remove stray '\n'Glenn L McGrath2003-08-292-3/+3
|
* Remove unused filesGlenn L McGrath2003-08-293-136/+0
|
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-143-3/+3
|
* Patch from Thomas Cameron:Eric Andersen2003-07-141-5/+25
| | | | | | | | | | | Hello all, This patch adds more "Help" text to the config system. Almost all applets now have a help entry. Also, I cleaned up the spacing of the existing text so that things are consistent. This patch is against this morning's CVS. Thomas Cameron CEI Systems, Inc.
* Make gcc not whine about "deprecated use of label at end of compound statement"Eric Andersen2003-06-201-0/+1
|
* Add missing pieces from vodz' last_patch88Eric Andersen2003-06-143-0/+203
|
* Vodz, last_patch_88Glenn L McGrath2003-06-1019-355/+197
|
* Major coreutils update.Manuel Novoa III2003-03-191-3/+3
|
* Patch from Bastian BlankGlenn L McGrath2003-02-151-0/+4
| | | | | | | - ip route flush - different usage for telnetd in inetd mode - changes for the default flags of the ip features - if no /usr requested, udhcpc should use the script also without /usr.
* sync with udhcp bug fixesRuss Dill2003-02-123-6/+9
|
* merge fixes with udhcpRuss Dill2003-01-211-3/+4
|
* hehe. Screwed that one up. Lets do things right this time.Eric Andersen2002-12-111-1/+2
| | | | -Erik
* Makefile rework coordinate with Russ so udhcp will behaveEric Andersen2002-12-111-15/+9
| | | | -Erik