summaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* small style fixesDenis Vlasenko2006-10-121-3/+3
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-2/+2
|
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-291-1/+1
|
* several fixes from openWRT projectDenis Vlasenko2006-09-261-2/+12
|
* Build fixes for gcc 4.0 with -Werror, from Tito.Rob Landley2006-09-111-1/+1
|
* Fix (hopefully) bug 976. Need more thorough audit.Denis Vlasenko2006-09-071-6/+12
| | | | | Restore erroneously removed FEATURE_UDHCP_SYSLOG.
* Implement optional syslog logging using ordinaryDenis Vlasenko2006-09-061-21/+21
| | | | | | bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually.
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-0/+1
|
* Various cleanups I made while going through Erik Hovland's patch submissions,Rob Landley2006-06-251-42/+3
| | | | some of which are even from him. :)
* - reuse strings and messages. Saves about 600BBernhard Reutner-Fischer2006-06-071-1/+1
|
* My first bout of untangling udhcp. Make lots of gratuitous #defines goRob Landley2006-05-281-17/+16
| | | | | | away, substitutie BB_VER for an external VERSION, use busybox CONFIG symbols rather than checking for them then defining others, etc. Lots more cleanup to do...
* Consolidate #include <sys/time.h> so libbb.h does it.Rob Landley2006-05-271-1/+0
|
* add back in udhcp supportMike Frysinger2006-05-081-0/+574
|
* remove in place of external linkMike Frysinger2006-03-231-573/+0
|
* sync busybox and udhcp treesMike Frysinger2006-03-231-0/+1
|
* Roy Walker writes:Eric Andersen2006-03-201-2/+9
| | | | | | | | | | | | | | | | | 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.
* Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x)Rob Landley2006-03-011-4/+4
| | | | from before "if(x) free(x)".
* Patch from Giuseppe Ciotta to specify retry count.Rob Landley2006-02-201-3/+8
|
* fix up yet more annoying signed/unsigned and mixed type errorsEric Andersen2006-01-301-4/+4
|
* just whitespaceTim Riker2006-01-251-3/+3
|
* - add platform.h.Bernhard Reutner-Fischer2006-01-221-15/+3
| | | | - use shorter boilerplate while at it.
* more make safe the exported namespace for udhcp. Move to bb-specific file ↵"Vladimir N. Oleynik"2005-09-231-1/+1
| | | | for reduce change into udhcp-CVS
* add support for setting the dhcp vendor class option (option 60). Paul Fox2005-09-221-2/+23
| | | | | | udhcpc now has a -V (--vendorclass), which will replace the default "udhcpRELEASE" string in this option.
* allow suppression of default client-id. fixes bug 000037. allowsPaul Fox2005-08-011-3/+12
| | | | busybox to match kernel and u-boot behavior with respect to client-id.
* 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-041-2/+2
|
* Patch from Shaun Jackman:Rob Landley2005-05-041-2/+2
| | | | | | Replace uptime with time(NULL). time is more portable than uptime and eliminates the need to define uptime, reducing code size slightly.
* 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-061-2/+22
|
* fix timewarp in client (server fix later)Russ Dill2004-05-191-3/+3
|
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-24/+24
|
* Use standard C99 typesEric Andersen2004-01-301-1/+1
|
* Finish remerging busybox udhcp and udhcp. Some cleanups as well.Russ Dill2003-12-181-28/+23
|
* start attempting to bring udhcp in busybox back to the state where it is ↵Russ Dill2003-12-161-1/+30
| | | | (ideally) an exact copy of udhcp outside of busybox so that its easy to merge back and forth
* 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
* Remove stray '\n'Glenn L McGrath2003-08-291-1/+1
|
* Make gcc not whine about "deprecated use of label at end of compound statement"Eric Andersen2003-06-201-0/+1
|
* Vodz, last_patch_88Glenn L McGrath2003-06-101-98/+22
|
* 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.
* merge fixes with udhcpRuss Dill2003-01-211-3/+4
|
* slight change to reflect BB_VER changeRuss Dill2002-12-111-1/+1
|
* resync with udhcp cvsRuss Dill2002-12-111-2/+2
|
* Make sure we have a show_usage function prototypeEric Andersen2002-12-111-1/+3
| | | | -Erik
* Change if(x)free(x); to free(x);Aaron Lehmann2002-11-281-2/+2
|
* sync to udhcp 0.9.8Russ Dill2002-10-311-4/+5
|
* added full udhcp integrationRuss Dill2002-10-141-0/+559