summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rtadvd
Commit message (Collapse)AuthorAgeFilesLines
* style.Makefile says tab between var= and value.delphij2010-12-231-2/+2
|
* Allow overriding pidfile and dumpfile.delphij2010-12-223-19/+47
| | | | | | PR: bin/153362 Submitted by: Joe Holden <joe rewt org uk> MFC after: 1 month
* Fix another "string" typo.uqs2010-10-281-1/+1
| | | | MFC after: 3 days
* Correct a typo.bz2010-10-281-1/+1
| | | | MFC after: 3 days
* mdoc: move remaining sections into consistent orderuqs2010-05-131-2/+2
| | | | | | | This pertains mostly to FILES, HISTORY, EXIT STATUS and AUTHORS sections. Found by: mdocml lint run Reviewed by: ru
* The last big commit: let usr.sbin/ use WARNS=6 by default.ed2010-01-021-0/+2
|
* Properly convert bit value to a bit field. Before we were storingimp2009-02-191-2/+2
| | | | | | | | | | values like 0x80 or 0x40 into a uint8_t foo:1 bitfield. This would result in the bit always being 0. One of these caused a warning for overflow (one that was 0x80), but the other didn't. They were both wrong. This is why I hate code that mixes c struct bitfields and #defines. The rest of the fields accessed by the program should be audited.
* - rename the RETURN VALUES section to EXIT STATUS [1]danger2009-01-071-4/+2
| | | | | | | | - convert to .Ex macro - not bumping a date as this is not a real content change Approved by: ru [1] MFC after: 3 days
* Change 2 arc4random modulo operations to arc4random_uniform() asache2008-07-261-2/+2
| | | | | | OpenBSD does, since modulo is not power of 2. Obtained from: OpenBSD
* Cleanup of userland __P usekevlo2007-11-0713-89/+89
|
* o Remove duplicate includes.maxim2007-01-201-1/+0
| | | | Obtained from: Slava Semushin via NetBSD
* These IPv6-only tools have no explicit dependency on the INET6 macro.yar2006-07-271-1/+1
| | | | Tested with: cmp(1)
* avoid heap overrunsuz2006-03-231-1/+1
| | | | | Obtained from: KAME MFC after: 1 day
* fixed a typo in commentsuz2005-11-171-1/+1
|
* changed syslog level to more appropriate onessuz2005-10-191-3/+3
| | | | | | Obtained from: KAME Reviewd by: ume, gnn MFC after: 2 weeks
* source link-layer address option should be marked to be checked later,suz2005-10-191-1/+1
| | | | | | | | because rs_input() need this option. Obtained from: KAME Reviewed by: ume, gnn MFC after: 2 weeks
* added an ioctl option in kernel so that ndp/rtadvd can change some ↵suz2005-10-191-0/+30
| | | | | | | | NDP-related kernel variables based on their configurations (RFC2461 p.43 6.2.1 mandates this for IPv6 routers) Obtained from: KAME Reviewd by: ume, gnn MFC after: 2 weeks
* fix typo.ume2005-08-101-3/+3
| | | | | Submitted by: suz Obtained from: KAME
* Fixed the misplaced $FreeBSD$.ru2005-02-092-2/+4
|
* removed compilation warningsuz2004-10-222-0/+2
| | | | PR: bin/71624
* Per letter dated July 22, 1999 remove 3rd clause of Berkeley derived softwareimp2004-08-071-4/+0
| | | | (with permission of addtional copyright holders where appropriate)
* Fixed SEE ALSO references.ru2004-07-021-13/+13
|
* libcompat doesn't seem to be necessary any more.phk2004-06-211-3/+0
|
* Fixed a misspelling of 0 as NULL.bde2004-03-101-1/+1
|
* fixed memory leak.suz2003-09-201-1/+4
| | | | Obtained From: KAME
* Get rid of duplicates.ru2003-09-141-1/+1
|
* - supported a string notation for xxflags.ume2003-08-159-409/+531
| | | | | | | | | | | | | | | | | | | | | | - deprecate routes#N, as it is hard to keep consistency with rtprefixN. accept any number of "rtprefix", "rtrefix0", ..., "rtprefix99". - deprecate "addrs#N", as it is difficult for users to keep consistency with "addrN". accept 100 prefix info in maximum - like "addr", "addr0" ... "addr99". WARNS=2 clean on netbsd. old configuration file should work just fine. behavior change: previously, we rejected "addrN" if there's "addr", and we rejected "addr" if there is "addrN". now we accept both without problem. - when an advertised prefix configured from the kernel has been added or invalidated, notice the change in a short delay. - when invalidating a prefix, do not bark even if there is inconsistency about prefix lifetimes. - wrap more specific route info code into ROUTEINFO. Obtained from: KAME MFC after: 1 week
* use arc4random.ume2003-08-152-1/+7
| | | | | Obtained from: KAME MFC after: 1 week
* variable shared with signal handler needs to be "volatile sig_atomic_t".ume2003-08-151-2/+2
| | | | | Obtained from: KAME MFC after: 1 week
* set LOG_PERROR for openlog() when running foreground.ume2003-08-151-3/+7
| | | | | Obtained from: KAME MFC after: 1 week
* dump the content of route information optionsume2003-08-151-1/+19
| | | | | Obtained from: KAME MFC after: 1 week
* logged the fact to dump the status.ume2003-08-151-0/+3
| | | | | Obtained from: KAME MFC after: 1 week
* daemon() has to be called prior to file descriptor setupsume2003-08-141-2/+2
| | | | | | | (otherwise file descriptors could be closed mistakenly) Obtained from: KAME MFC after: 1 week
* support poll(2).ume2003-08-142-2/+37
| | | | | Obtained from: KAME MFC after: 1 week
* - rename some variables.ume2003-08-141-27/+14
| | | | | | | - remove unused block. Obtained from: KAME MFC after: 1 week
* signal handler must take "int" arg.ume2003-08-141-4/+5
| | | | | Obtained from: KAME MFC after: 1 week
* avoid fd_set overrun.ume2003-08-141-9/+21
| | | | | Obtained from: KAME MFC after: 1 week
* malloc() may return NULL.ume2003-08-121-0/+5
| | | | | Obtained from: KAME MFC after: 1 week
* reduce #ifdef.ume2003-08-116-33/+4
| | | | MFC after: 1 week
* use strlcpy() and snprintf().ume2003-08-113-7/+7
| | | | | Obtained from: KAME MFC after: 1 week
* use int64_t instead of long long.ume2003-08-113-7/+7
| | | | | Obtained from: KAME MFC after: 1 week
* Drop MIP6 code. We don't support MIP6 yet.ume2003-08-084-142/+4
| | | | MFC after: 1 week
* KNF, correct typos and cleanup spaces.ume2003-08-089-78/+66
| | | | | Obtained from: KAME MFC after: 1 week
* stop use of register.ume2003-08-081-14/+14
| | | | | Obtained from: KAME MFC after: 1 week
* __FUNCTION__ --> __func__ume2003-08-087-164/+164
| | | | | Obtained from: KAME MFC after: 1 week
* fixed wrong parameter descriptionssuz2003-07-301-3/+9
| | | | | Obtained from: KAME MFC after: 1 day
* - fixed byte order of route lifetimes in route info opptions.suz2003-04-101-2/+2
| | | | | | | - corrected wording in a log message. Obtained from: KAME MFC after: 1 week
* Use assignment, not equivalence test.njl2003-04-051-1/+1
| | | | No response from: suz
* style.Makefile(5)obrien2003-04-041-1/+1
|
* fixed invalid pointer referencesuz2003-04-021-0/+1
| | | | Obtained from: KAME
OpenPOWER on IntegriCloud