summaryrefslogtreecommitdiffstats
path: root/usr.sbin/route6d/route6d.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* The header file netinet/in_var.h included netinet6/in6_var.h. Thisbluhm2013-10-171-2/+2
* replace rand(3)/random(3) calls with secure arc4random*()naddy2013-08-261-5/+6
* Correct format string mismatches turned up by -Wformat=2guenther2013-08-221-2/+2
* create realloc() loops around sysctl for array-based mibs, in programsderaadt2013-03-211-14/+16
* rcsid[] and sccsid[] and copyright[] are essentially unmaintained (andderaadt2009-10-271-5/+1
* More consistent RTM_VERSION checking. A few missing one was in the wrongclaudio2009-06-261-9/+9
* rtm->rtm_hdrlen conversionchris2009-06-051-4/+4
* no need for _KERNEL or the rtentry; ok claudioderaadt2009-05-131-8/+2
* msg_controllen has to be CMSG_SPACE so that the kernel can account forderaadt2008-03-241-4/+4
* repair msg_controllen and also an errant buf[CMSG_LEN(..)] declderaadt2008-03-151-5/+5
* Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due toderaadt2008-03-131-12/+16
* typos; ok jmc@martynas2007-11-261-3/+3
* reduce RFC2292/3542 #ifdef.itojun2006-12-151-88/+6
* validate response packet more carefully. kame revision 1.109->1.111itojun2006-11-151-8/+82
* Don't use rmx_hopcount any longer. The kernel ignores it anyway.claudio2006-06-161-6/+3
* malloc(x * y) -> calloc(x, y) from adobriyan AT gmail.com, with tweaksdjm2006-04-021-6/+4
* typos from alexey dobriyan;jmc2006-02-061-3/+3
* remove RTM_OLDADD/_OLDDEL traces (that lead to an "unspported" message anyway)henning2005-05-261-14/+2
* ansi cleanup; khalek@linuxgamers.netderaadt2004-08-011-114/+45
* need_trigger/idx should be u_int, not ssize_t. millertitojun2003-10-311-3/+4
* insufficient length check (possible remote DoS). kame PR 507.itojun2003-10-311-3/+8
* Don't age non-gateway host routes. NetBSD PR bin/22568 from Andrew Whiteitojun2003-08-221-2/+4
* () to (void)deraadt2003-06-281-12/+12
* port numbers are unsigned. use %u. from kameitojun2003-04-221-4/+4
* avoid hardcoding 12; use NI_MAXSERV. deraadt okitojun2003-04-151-3/+3
* %d is 12 chars big, not 10; ok deraadtpvalchev2003-04-141-3/+3
* use poll(2). sync w/kame originally from netbsditojun2002-10-261-7/+46
* use strtoul, not atoi. some error handling sync w/kame.itojun2002-10-261-16/+32
* suppress dump output on -q. sync w/kameitojun2002-08-211-3/+6
* strchr() instead of index()deraadt2002-06-091-5/+5
* avoid fd_set overrun. sync w/kameitojun2002-06-071-17/+24
* rtm_seq is an int. from deraadtitojun2002-05-291-4/+4
* more strcpy/sprintf death; mpech okderaadt2002-05-221-4/+5
* do not age address on loopback interface. sync w/kameitojun2002-02-251-17/+30
* We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.millert2002-02-191-46/+2
* Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)millert2002-02-171-8/+7
* Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.millert2002-02-161-53/+53
* call daemon(3) prior to socket setups to avoid file descriptor close mistakes.itojun2002-01-111-17/+10
* Use pidfile() instead of doing the equivalent thing by hand, and sometimesmiod2001-12-011-8/+4
* remove unused signal handler variablederaadt2001-11-171-7/+4
* sync with the latest kame route6d.itojun2001-09-051-118/+174
* need va_start/end pair every time we call vfprintf(). via markusitojun2001-06-131-10/+23
* exit(-#) is wrongderaadt2001-03-091-5/+5
* correct delroute() against host routes. clarify ROUTE6D p2p advert behavioritojun2001-03-081-10/+30
* bring in latest kame code.itojun2001-02-071-294/+385
* make signo a volatile variable. sync with kameitojun2001-01-121-4/+4
* make signal handler very short, to avoid possibility of race conditions.itojun2001-01-121-72/+198
* do not advertise dynamic/cloned routesitojun2000-11-101-3/+30
* cast size_t to u_long on printing, be friendly with alpha. sync with kameitojun2000-10-101-6/+7
* printf string format audit. from: sommerfeld@netbsd.orgitojun2000-10-061-8/+11