aboutsummaryrefslogtreecommitdiff
path: root/networking/zcip.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* zcip: convert lots of zero-initialized localsDenis Vlasenko2006-09-031-41/+43
| | | | | in zcip_main() to statics in bss.
* zcip: use xfunc() where appropriateDenis Vlasenko2006-09-031-29/+23
|
* replacing func() with xfunc() where appropriateDenis Vlasenko2006-09-031-4/+1
|
* zcip: apply patch fromDenis Vlasenko2006-09-031-92/+182
| | | | | | http://bugs.busybox.net/view.php?id=1005 zcip does not claim another IP after defending
* Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damageRob Landley2006-08-291-1/+1
| | | | | (the e2fsprogs directory is too twisty and evil to easily fix, but I plan to rewrite it anyway so I'll just bump that up in priority a bit).
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-0/+1
|
* Bug http://bugs.busybox.net/view.php?id=723 - initialize tv1 the first timeRob Landley2006-06-301-9/+9
| | | | through the loop.
* A few patches from Erik Hovland, turning strncpy() into safe_strncpy() andRob Landley2006-06-251-1/+1
| | | | removing some unnecessary code.
* Clean up.Rob Landley2006-06-221-74/+13
|
* Consolidate #include <sys/time.h> so libbb.h does it.Rob Landley2006-05-271-1/+0
|
* fix from David Daney, on busybox mailing list:Paul Fox2006-03-291-1/+1
| | | | | | | | | | | | | | | | | | | | | > The problem is that if the zcip protocol times out at about the same > time another ARP packet is being received, the newly calculated timeout > may be set to wait forever. This prevents the protocol from progressing > through its various states. > > The Fix is to set the timeout to zero if it used to be a positive > number, but it has already expired. This causes the next protocol state > to be entered immediately instead of never. > > If OK please commit. > > Also note that if you may have to apply the patch on this page: > > http://www.science.uva.nl/research/air/wiki/LinkLocalARPMeasurements > > To the linux kernel to get proper zcip behavior. >
* Patch from Denis Vlasenko turning static const int (which gets emitted intoRob Landley2006-03-101-11/+13
| | | | the busybox binary) into enums (which don't).
* fix up annoying signed/unsigned and mixed type errorsEric Andersen2006-01-301-1/+1
|
* just whitespaceTim Riker2006-01-251-4/+4
|
* - add platform.h.Bernhard Reutner-Fischer2006-01-221-16/+3
| | | | - use shorter boilerplate while at it.
* - do away with superfluous keyword.Bernhard Reutner-Fischer2005-12-131-1/+1
|
* - fix zcip for IMA compile mode.Bernhard Reutner-Fischer2005-12-121-6/+6
| | | | | rename usage() to zcip_usage, make struct arp_packet static. This applet is not ISO C89 compatible due to the use of C99-style comments ("c++ comments).
* - fix bug to avoid aliasing busybox' main to zcip_main in IMA mode.Bernhard Reutner-Fischer2005-10-211-0/+3
|
* Revert Tito's patch to zcip. My bad, David Brownell had objected and I missedRob Landley2005-05-031-109/+186
| | | | | it...
* On Tuesday 19 April 2005 21:10, Tito wrote and today added:Rob Landley2005-05-011-186/+109
| | | | | | | | | | | | | > Hi, > this is a first attempt of size optimization for zcip taking into account all > the hints given so far on the list. > I've applied just the more obvious busyboxifications so maybe it could be > optimized more. BTW: I've ripped out a lot of debug code and changed c++ // comments to /* */ as both were rather confusing for a newbie like me. ;-) Sorry to the author for that. I know that this makes mantaining the code easier, but I'm simple minded....
* David Brownell submitted a new applet, zcip, based on RFC 3927. This isRob Landley2005-04-301-0/+550
version 0418b. It compiled.