aboutsummaryrefslogtreecommitdiff
path: root/libexec/bootpd
Commit message (Collapse)AuthorAgeFilesLines
* Use RTF_LLDATA.Olivier Houchard2009-03-311-1/+1
| | | | Notes: svn path=/head/; revision=190601
* This main goals of this project are:Qing Li2008-12-151-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. separating L2 tables (ARP, NDP) from the L3 routing tables 2. removing as much locking dependencies among these layers as possible to allow for some parallelism in the search operations 3. simplify the logic in the routing code, The most notable end result is the obsolescent of the route cloning (RTF_CLONING) concept, which translated into code reduction in both IPv4 ARP and IPv6 NDP related modules, and size reduction in struct rtentry{}. The change in design obsoletes the semantics of RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland applications such as "arp" and "ndp" have been modified to reflect those changes. The output from "netstat -r" shows only the routing entries. Quite a few developers have contributed to this project in the past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and Andre Oppermann. And most recently: - Kip Macy revised the locking code completely, thus completing the last piece of the puzzle, Kip has also been conducting active functional testing - Sam Leffler has helped me improving/refactoring the code, and provided valuable reviews - Julian Elischer setup the perforce tree for me and has helped me maintaining that branch before the svn conversion Notes: svn path=/head/; revision=186119
* Make tv_sec a time_t on all platforms but alpha. Brings us more in line withTom Rhodes2005-12-241-2/+3
| | | | | | | | | | | | POSIX. This also makes the struct correct we ever implement an i386-time64 architecture. Not that we need too. Reviewed by: imp, brooks Approved by: njl (acpica), des (no objects, touches procfs) Tested with: make universe Notes: svn path=/head/; revision=153706
* Fix most cases where the address of an int is passed to a function expecting aStefan Farfeleder2005-02-141-1/+2
| | | | | | | socklen_t * argument. Notes: svn path=/head/; revision=141918
* Expand *n't contractions.Ruslan Ermilov2005-02-131-1/+1
| | | | Notes: svn path=/head/; revision=141846
* Sort sections.Ruslan Ermilov2005-01-181-10/+10
| | | | Notes: svn path=/head/; revision=140414
* Start the dreaded NOFOO -> NO_FOO conversion.Ruslan Ermilov2004-12-211-1/+1
| | | | | | | OK'ed by: core Notes: svn path=/head/; revision=139103
* For variables that are only checked with defined(), don't provideRuslan Ermilov2004-10-241-1/+1
| | | | | | | any fake value. Notes: svn path=/head/; revision=136910
* Call nmatch function with parameters casted to types the function actuallyAlexander Kabaev2004-07-291-1/+1
| | | | | | | expects. Notes: svn path=/head/; revision=132848
* Deal with double whitespace.Ruslan Ermilov2004-07-031-1/+1
| | | | Notes: svn path=/head/; revision=131505
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-022-32/+64
| | | | Notes: svn path=/head/; revision=131487
* Bump document date for the latest change.Ruslan Ermilov2004-05-161-3/+3
| | | | | | | Minor markup tweaks. Notes: svn path=/head/; revision=129303
* Add the '-h hostname' to usage(), too.Peter Pentchev2004-02-131-1/+3
| | | | | | | | | | | While I'm here, sync the usage() synopsis with the manual page synopsis: make the [-i | -s] explicit and sort the options alphabetically. Reminded by: ru MFC after: 3 days Notes: svn path=/head/; revision=125769
* Document the '-h hostname' option, which seems to have been presentPeter Pentchev2004-02-101-7/+14
| | | | | | | | | | | | ever since rev. 1.1 of bootpd.c. While I'm here, rearrange the synopsis a bit: sort the options and clarify that -i and -s are mutually exclusive. Reported by: Atanas Buchvarov <nasko@nove.bg> MFC after: 3 days Notes: svn path=/head/; revision=125654
* fix a couple typos in the commentsJohn-Mark Gurney2003-06-151-2/+2
| | | | | | | From NetBSD's bootpd (in src/usr.sbin/bootp) Notes: svn path=/head/; revision=116371
* fix bootpd to use fd_set. For some reason on Sparc, using int withJohn-Mark Gurney2003-06-151-4/+6
| | | | | | | select is broken. Notes: svn path=/head/; revision=116370
* Add FBSDID. udp/bootps -> bootps/udp. Use err(3).Philippe Charnier2003-02-054-46/+41
| | | | Notes: svn path=/head/; revision=110395
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/Jens Schweikhardt2002-12-301-1/+1
| | | | | | | Add FreeBSD Id tag where missing. Notes: svn path=/head/; revision=108470
* Don't call report() without a format string.Kris Kennaway2002-10-131-1/+1
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=105041
* Use strlcpy instead of incorrectly using strncpy.Kris Kennaway2002-10-131-1/+1
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=105039
* de-__P()Alfred Perlstein2002-10-092-2/+2
| | | | Notes: svn path=/head/; revision=104742
* Replace various spelling with FALLTHROUGH which is lint()ablePhilippe Charnier2002-08-251-2/+3
| | | | Notes: svn path=/head/; revision=102411
* mdoc(7) police: Removed redundant .Ns calls.Ruslan Ermilov2002-08-131-1/+1
| | | | Notes: svn path=/head/; revision=101828
* The .Nm utilityPhilippe Charnier2002-07-063-6/+11
| | | | Notes: svn path=/head/; revision=99500
* Assume __STDC__, remove non-__STDC__ code. ↵Alfred Perlstein2002-05-282-24/+4
| | | | | | | Remove private __P. Notes: svn path=/head/; revision=97419
* Assume __STDC__, remove non-__STDC__ code.Alfred Perlstein2002-05-281-11/+3
| | | | | | | Remove private __P. Notes: svn path=/head/; revision=97418
* This code defined a private __P, nuke it.Alfred Perlstein2002-05-288-87/+59
| | | | Notes: svn path=/head/; revision=97417
* Assume __STDC__, remove non-__STDC__ code.Alfred Perlstein2002-05-2814-97/+17
| | | | | | | Reviewed by: md5 Notes: svn path=/head/; revision=97416
* Mark report() as printflike and fix resulting warnings, including one bugKris Kennaway2002-02-044-4/+4
| | | | | | | (get_errmsg -> get_errmsg()) Notes: svn path=/head/; revision=90159
* Avoid a few compiler warnings (printf codes, missing includes etc).Ian Dowse2001-09-293-4/+8
| | | | | | | | | PR: bin/30864 Obtained from: Dan Lukes <dan@obluda.cz> MFC after: 1 week Notes: svn path=/head/; revision=84125
* Missing `break' statements caused two error messages to becomeIan Dowse2001-09-291-1/+3
| | | | | | | | | | | | "unkown error" [sic]. Add the missing breaks, and correct the spelling typo. PR: bin/30865 Submitted by: Dan Lukes <dan@obluda.cz> MFC after: 1 week Notes: svn path=/head/; revision=84119
* RFC2132 is not clear about whether the "Maximum DHCP Message Size"Ian Dowse2001-09-252-2/+4
| | | | | | | | | | | | | | | | | | refers to the size of the whole ethernet packet, just the DHCP message within the UDP payload, or something else. bootpd interpreted it as a maximum UDP payload size, so it could end up sending fragmented packets to clients (such as some versions of Etherboot) that used different interpretations of the maximum message size. Switch to the most conservative interpretation: ensure that the ethernet packet containing the response is no larger than the specified maximum message size. This matches the behaviour of the ISC dhcpd. MFC after: 1 week Notes: svn path=/head/; revision=83941
* mdoc(7) police: protect trailing full stops of abbreviationsRuslan Ermilov2001-08-101-1/+1
| | | | | | | with a trailing zero-width space: `e.g.\&'. Notes: svn path=/head/; revision=81449
* Remove whitespace at EOL.Dima Dorfman2001-07-151-2/+2
| | | | Notes: svn path=/head/; revision=79754
* - Backout botched attempt to intoduce MANSECT feature.Ruslan Ermilov2001-03-264-3/+3
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74814
* Set the default manual section for libexec/ to 8.Ruslan Ermilov2001-03-203-3/+2
| | | | Notes: svn path=/head/; revision=74529
* Preceed/preceeding are not english words. Use precede or preceding.Jeroen Ruigrok van der Werven2001-02-181-2/+2
| | | | Notes: svn path=/head/; revision=72640
* mdoc(7) police: split punctuation characters + misc fixes.Ruslan Ermilov2001-02-012-5/+5
| | | | Notes: svn path=/head/; revision=71895
* man(7) -> mdoc(7).Ruslan Ermilov2001-01-162-97/+106
| | | | Notes: svn path=/head/; revision=71112
* mdoc(7) police: .Os CMU -> .Os, split authors for better output.Ruslan Ermilov2000-12-122-2/+3
| | | | Notes: svn path=/head/; revision=69913
* mdoc(7) police: use canonical form of .Dd macro.Ruslan Ermilov2000-12-111-1/+1
| | | | Notes: svn path=/head/; revision=69857
* Add `_PATH_DEVZERO'.David E. O'Brien2000-12-093-3/+8
| | | | | | | Use _PATH_* where where possible. Notes: svn path=/head/; revision=69793
* ConstifyKris Kennaway2000-11-262-5/+6
| | | | Notes: svn path=/head/; revision=69200
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-10/+10
| | | | Notes: svn path=/head/; revision=68949
* Avoid use of direct troff requests in mdoc(7) manual pages.Ruslan Ermilov2000-11-101-28/+27
| | | | Notes: svn path=/head/; revision=68575
* Fix to=auto in bootptab.Dirk Froemberg2000-11-101-6/+10
| | | | | | | | | PR: misc/5574 Submitted by: Bart Robinson <lomew@marker.cs.utah.edu> Reviewed by: wollman Notes: svn path=/head/; revision=68561
* strerror is declared in <string.h>Warner Losh2000-09-041-3/+4
| | | | | | | errno is declared in <errno.h> Notes: svn path=/head/; revision=65426
* Fix bootpd for Alpha.Marcel Moolenaar1999-11-123-9/+11
| | | | | | | | | | | | | | bptypes.h originally defined int32 to be of type long. This obviously doesn't work on the Alpha. By defining int32 (and u_int32) in terms of int32_t (and u_int32_t) it now is what it says it should be. Two occurrences of 'unsigned int32' have been changed to 'u_int32' for consistency. Submitted by: Wilko Bulte <wilko@yedi.iaf.nl> Notes: svn path=/head/; revision=53105
* Add $FreeBSD$ lines to man pages that are missing them to make itMike Pritchard1999-08-282-0/+4
| | | | | | | | | | easier for translation teams. PR: docs/13418 Submitted by: Alexey Zelkin <phantom@cris.net> Notes: svn path=/head/; revision=50533
* $Id$ -> $FreeBSD$Peter Wemm1999-08-2834-34/+34
| | | | Notes: svn path=/head/; revision=50476