summaryrefslogtreecommitdiff
path: root/networking/udhcp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - add helptext for --retriesBernhard Reutner-Fischer2006-05-101-0/+1
|
* add back in udhcp supportMike Frysinger2006-05-0861-0/+5812
|
* remove in place of external linkMike Frysinger2006-03-2348-5062/+0
|
* make the makefile a little more flexible so we can store in either locationMike Frysinger2006-03-232-35/+40
|
* sync busybox and udhcp treesMike Frysinger2006-03-237-14/+21
|
* Roy Walker writes:Eric Andersen2006-03-202-2/+10
| | | | | | | | | | | | | | | | | Here is a patch against the current subversion repository, that makes udhcpc have an adjustable timeout. Works for both foreground and before it drops to the background. This brings it more in-line with ISC dhcpc. Use like so: udhcpc --timeout=10 ... or udhcpc -T 10 ... Still shooting for 1.1.1 this month? Would really be great if you could get this in that release. Please give credit to Paul Pacheco - ppacheco@gmail.com.
* - revert back to r14406Bernhard Reutner-Fischer2006-03-131-70/+29
|
* - backout using features which are not available with the previous stableBernhard Reutner-Fischer2006-03-091-2/+6
| | | | version of make (3.71.1).
* - use absolute path for top_builddir and top_srcdir.Bernhard Reutner-Fischer2006-03-021-0/+4
| | | | Fixes make trying to include the very same file in an endless loop.
* - fixes parallel builds (make -j)Bernhard Reutner-Fischer2006-03-011-28/+65
| | | | - use less resources for the buildsystem itself
* Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x)Rob Landley2006-03-012-5/+5
| | | | from before "if(x) free(x)".
* Patch from Denis Vlasenko to constify things and fix a few typos.Rob Landley2006-02-221-3/+4
|
* Bug 751: file handle leaks can add up until available filehandles for theRob Landley2006-02-222-3/+12
| | | | process are exhausted.
* Don't build directory libraries unless we're building an applet that needs it.Rob Landley2006-02-211-0/+2
| | | | Cherry-picked from Devin Bayer's big MacOS X patch.
* Missed a file in the last checkin, won't build without this...Rob Landley2006-02-211-0/+1
|
* Patch from Giuseppe Ciotta to specify retry count.Rob Landley2006-02-201-3/+8
|
* make the build system puuuuuuuuuuurtyMike Frysinger2006-02-021-3/+2
|
* fix up yet more annoying signed/unsigned and mixed type errorsEric Andersen2006-01-303-7/+7
|
* just whitespaceTim Riker2006-01-2513-42/+42
|
* - add platform.h.Bernhard Reutner-Fischer2006-01-223-17/+9
| | | | - use shorter boilerplate while at it.
* - shared libbusybox.Bernhard Reutner-Fischer2006-01-151-16/+14
| | | | | - IMA compilation option (aka IPO, IPA,..) Please holler if i broke something..
* more make safe the exported namespace for udhcp. Move to bb-specific file ↵"Vladimir N. Oleynik"2005-09-2310-20/+35
| | | | for reduce change into udhcp-CVS
* remove 1 exported"Vladimir N. Oleynik"2005-09-232-2/+1
|
* move a couple of functions from common code (options.c) to udhcpd privatePaul Fox2005-09-224-50/+51
| | | | code (files.c) to make udhcpc a little smaller.
* add support for setting the dhcp vendor class option (option 60). Paul Fox2005-09-224-9/+28
| | | | | | udhcpc now has a -V (--vendorclass), which will replace the default "udhcpRELEASE" string in this option.
* safe exported namespace for udhcp. Not full, bore :-("Vladimir N. Oleynik"2005-09-225-1/+14
|
* Fix the warning by rewriting the function to be smaller and simpler.Rob Landley2005-09-081-28/+17
| | | | | I'd appreciate somebody on a __BIG_ENDIAN platform testing this out; I haven't got the hardware...
* Off by one error in max_leases sanity check. Bug 349, apparently.Rob Landley2005-09-011-1/+1
|
* allow suppression of default client-id. fixes bug 000037. allowsPaul Fox2005-08-012-4/+14
| | | | busybox to match kernel and u-boot behavior with respect to client-id.
* use toplevel ARFLAGS and update default ARFLAGS to be quietMike Frysinger2005-07-271-1/+1
|
* remove duplicate check against chaddr.Paul Fox2005-07-211-3/+0
|
* applying fix for:Paul Fox2005-07-201-0/+5
| | | | | 0000260: udhcpc doesn't validate client hardware address
* Tobias Krawutschke found a bug where the DHCP client would accept packetsRob Landley2005-05-261-0/+3
| | | | | with the wrong ARP address, meaning we could easily get somebody else's IP. That is a bad thing, and this is the minimal two-line fix.
* Revert the uptime() removal. Let the list sort it out...Rob Landley2005-05-044-5/+14
|
* 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
|