summaryrefslogtreecommitdiffstats
path: root/usr.sbin/route6d
Commit message (Collapse)AuthorAgeFilesLines
* Fixed the misplaced $FreeBSD$.ru2005-02-091-1/+3
|
* - need_trigger/idx should be u_int, not ssize_t.ume2003-11-141-30/+34
| | | | | | | | | | | - realloc pedant. - set sin6_scope_id before sending (link-local/multicast) packets - removed an incorrect comment - don't age non-gateway host routes. - not remove global addresses on loopback interface from routing table by route aging. Obtained from: KAME
* - interface minimum MTU = 1280 in IPv6.ume2003-11-141-8/+3
| | | | | | - simplify. Obtained from: KAME
* our netstat is installed in /usr/bin.ume2003-11-141-1/+1
|
* fixe remote panic on short packetsuz2003-10-311-0/+5
| | | | Obtained from: KAME
* remove unused variablesam2003-10-031-2/+0
| | | | Supported by: FreeBSD Foundation
* rtm_seq is int, so seq/myseq should be int.ume2003-08-181-2/+2
| | | | | Obtained from: KAME MFC after: 1 week
* suppress outpt on dump request if -q is specified.ume2003-08-181-0/+3
| | | | | Obtained from: KAME MFC after: 1 week
* atoi -> strtoulume2003-08-181-2/+10
| | | | | Obtained from: KAME MFC after: 1 week
* - port numbers are unsigned. use %u.ume2003-08-181-2/+2
| | | | | | | - %d is not 10 chars, but 12 chars. Obtained from: KAME MFC after: 1 week
* explicitly specify IPPROTO_UDP when calling getaddrinfo().ume2003-08-181-0/+2
| | | | | Obtained from: KAME MFC after: 1 week
* remove a variable that is never used.ume2003-08-181-5/+2
| | | | | Obtained from: KAME MFC after: 1 week
* support poll(2).ume2003-08-182-5/+44
| | | | | Obtained from: KAME MFC after: 1 week
* - don't select with FD_SETSIZE.ume2003-08-181-14/+25
| | | | | | | - avoid fd_set overrun. Obtained from: KAME MFC after: 1 week
* - don't print strerror() if errno == 0 on fatal().ume2003-08-171-10/+26
| | | | | | | | - va_start/end audit. - can't use vfprintf() twice. need va_start/end pair every time. Obtained from: KAME MFC after: 1 week
* - do not SEGV on IFF_UP.ume2003-08-171-14/+21
| | | | | | | | | | - recover rrt_gw setting for non-p2p case. otherwise, we will not be able to recover interface route on interface down -> up transition. - clarify loop exit condition Obtained from: KAME MFC after: 1 week
* do not send dump request on -Nume2003-08-171-0/+2
| | | | | Obtained from: KAME MFC after: 1 week
* macro pedantume2003-08-171-2/+2
| | | | | Obtained from: KAME MFC after: 1 week
* minor cleanup; no need for extra variable hereume2003-08-171-4/+2
| | | | | Obtained from: KAME MFC after: 1 week
* use strchr(3).ume2003-08-171-3/+3
| | | | | Obtained from: KAME MFC after: 1 week
* daemon() has to be called prior to file descriptor setupsume2003-08-171-15/+8
| | | | | | | (otherwise file descriptors could be closed mistakenly) Obtained from: KAME MFC after: 1 week
* getifaddrs(3) is always used.ume2003-08-171-1/+1
| | | | MFC after: 1 week
* knf, typo, space.ume2003-08-172-21/+13
| | | | | Obtained from: KAME MFC after: 1 week
* set IPV6_V6ONLY.ume2003-08-171-7/+13
| | | | | Obtained from: KAME MFC after: 1 week
* - die if malloc fails.ume2003-08-171-2/+8
| | | | | | | - use strlcpy. Obtained from: KAME MFC after: 1 week
* use strncpyume2003-08-171-1/+1
| | | | | Obtained from: KAME MFC after: 1 week
* "sin" is a reserved C library function name. use sin6ume2003-08-171-73/+73
| | | | | Obtained from: KAME MFC after: 1 week
* We don't need __ss hack.ume2003-08-171-1/+1
| | | | MFC after: 1 week
* Add missing srand() (sranddev() for FreeBSD)ache2003-02-111-0/+5
|
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,schweikh2003-01-011-2/+2
| | | | especially in troff files.
* The .Nm utilitycharnier2002-07-141-4/+7
|
* mdoc(7) police:ru2001-08-071-7/+5
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-3/+2
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Sync with recent KAME.ume2001-06-113-358/+657
| | | | | | | | | | | | | | | | | | This work was based on kame-20010528-freebsd43-snap.tgz and some critical problem after the snap was out were fixed. There are many many changes since last KAME merge. TODO: - The definitions of SADB_* in sys/net/pfkeyv2.h are still different from RFC2407/IANA assignment because of binary compatibility issue. It should be fixed under 5-CURRENT. - ip6po_m member of struct ip6_pktopts is no longer used. But, it is still there because of binary compatibility issue. It should be removed under 5-CURRENT. Reviewed by: itojun Obtained from: KAME MFC after: 3 weeks
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for usr.sbin/ to 8.ru2001-03-201-1/+0
|
* Prepare for mdoc(7)NG.ru2000-12-271-5/+5
|
* - do not check/advertise cloned routes, nor dynamic routesume2000-11-271-5/+21
| | | | | | - cast size_t on printing (be friendly with alpha) Obtained from: KAME
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-2/+2
|
* Sync with KAME. Format string auditing and manpage cleanups.kris2000-10-082-7/+10
| | | | | Obtained from: KAME Submitted by: Bill Sommerfeld <sommerfeld@netbsd.org>
* fix LP64 issue in routing socket manipulation.itojun2000-08-141-10/+23
| | | | | make behavior of -A safer. (sync with kame)
* removed 'ifndef ADVAPI' partsume2000-07-102-33/+5
| | | | Obtained from: KAME
* use advanced API (-DADVAPI).itojun2000-07-091-1/+1
| | | | From: tkatayam@pi.titech.ac.jp (KATAYAMA, Takeo)
* sync with latest kame tree. more stable, p2p advert is correcteditojun2000-07-054-141/+445
|
* When unexpected rtmsg was received, route6d was dying.shin2000-03-141-2/+4
| | | | | | | | So change it just to log it. (Merge from recent KAME bug fix.) Submitted by: itojun Obtained from: KAME project
* remove redundant ifdef's.shin2000-01-072-42/+1
| | | | some part is specified by: phantom
* Getaddrinfo(), getnameinfo(), and etc support in libc/net.shin1999-12-286-0/+3363
Several udp and raw apps IPv6 support. Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
OpenPOWER on IntegriCloud