aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-208-23/+20
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-144-8/+5
|
* small style fixesDenis Vlasenko2006-10-121-3/+3
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-082-7/+5
|
* build system overhaulDenis Vlasenko2006-10-054-85/+26
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-031-2/+2
|
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-293-5/+5
|
* several fixes from openWRT projectDenis Vlasenko2006-09-264-3/+17
|
* whitespace cleanupDenis Vlasenko2006-09-171-1/+1
|
* Build fixes for gcc 4.0 with -Werror, from Tito.Rob Landley2006-09-111-1/+1
|
* udhcp: FEATURE_UDHCP_SYSLOG should be selected only ifDenis Vlasenko2006-09-091-2/+1
| | | | | udhcp[cd] really are going to use it.
* Fix (hopefully) bug 976. Need more thorough audit.Denis Vlasenko2006-09-075-11/+27
| | | | | Restore erroneously removed FEATURE_UDHCP_SYSLOG.
* Add CONFIG_FEATURE_SYSLOG which controls whetherDenis Vlasenko2006-09-071-10/+2
| | | | | | | | bb_xx_msg will ever try to send output to syslog. Add "select CONFIG_FEATURE_SYSLOG" to relevant applets. This allows to omit syslog code if we do not have any syslog-capable applets in the build.
* Implement optional syslog logging using ordinaryDenis Vlasenko2006-09-0617-179/+124
| | | | | | bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually.
* replacing func() with xfunc() where appropriateDenis Vlasenko2006-09-031-4/+1
|
* - remove last reminiscents of IN_BUSYBOXBernhard Reutner-Fischer2006-08-183-28/+4
|
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-032-8/+6
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* get rid of udhcp submenuMike Frysinger2006-07-241-18/+13
|
* This file doesn't appear to be used anywhere."Robert P. J. Day"2006-07-051-17/+0
|
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-0232-0/+32
|
* Remove all usage of the "register" storage class specifier."Robert P. J. Day"2006-07-011-1/+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. :)
* CONFIG_DHCP -> CONFIG_APP_DHCP.Rob Landley2006-06-222-11/+11
|
* - reuse strings and messages. Saves about 600BBernhard Reutner-Fischer2006-06-071-1/+1
|
* Use BB endianness macro.Rob Landley2006-05-311-2/+1
|
* My first bout of untangling udhcp. Make lots of gratuitous #defines goRob Landley2006-05-2817-221/+86
| | | | | | 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-273-3/+0
|
* fix spelling mistakesMike Frysinger2006-05-261-1/+1
|
* Minor cleanups: Convert a few calloc() calls to xzalloc, remove unnecessaryRob Landley2006-05-212-19/+7
| | | | memset, collate variable declarations...
* - replace _PATH_DEVNULL with bb_dev_nullBernhard Reutner-Fischer2006-05-191-4/+6
|
* pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵Mike Frysinger2006-05-131-1/+1
| | | | mailing list
* renameMike Frysinger2006-05-111-0/+0
|
* remove files not related to busyboxMike Frysinger2006-05-1122-1677/+0
|
* - 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
|