Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-04 | 6Bone is dead. Use the literal '3ffe::/16' rather than '6bone test | Kenneth R Westerback | |
address range' when explaining the -L example. | |||
2009-10-28 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | Theo de Raadt | |
unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms | |||
2009-06-26 | More consistent RTM_VERSION checking. A few missing one was in the wrong | Claudio Jeker | |
spot. OK henning@, sthen@ | |||
2009-06-05 | rtm->rtm_hdrlen conversion | Chris Cappuccio | |
ok claudio@, henning@ | |||
2009-05-13 | no need for _KERNEL or the rtentry; ok claudio | Theo de Raadt | |
2008-05-07 | Ref to ripd instead of routed. | Claudio Jeker | |
2008-03-24 | msg_controllen has to be CMSG_SPACE so that the kernel can account for | Theo de Raadt | |
each cmsg_len (ie. msg_controllen = sum of CMSG_ALIGN(cmsg_len). This works now that kernel fd passing has been fixed to accept a bit of sloppiness because of this ABI repair. lots of discussion with kettenis | |||
2008-03-15 | repair msg_controllen and also an errant buf[CMSG_LEN(..)] decl | Theo de Raadt | |
2008-03-13 | Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due to | Theo de Raadt | |
an extensive discussion with otto, kettenis, millert, and hshoexer | |||
2007-11-26 | typos; ok jmc@ | Martynas Venckus | |
sys/netinet/in_pcb.c and sys/net/bridgestp.c ok henning@ sys/dev/pci/bktr/* ok jakemsr@ | |||
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2006-12-19 | no need for -D | Jun-ichiro itojun Hagino | |
2006-12-15 | reduce RFC2292/3542 #ifdef. | Jun-ichiro itojun Hagino | |
2006-11-15 | validate response packet more carefully. kame revision 1.109->1.111 | Jun-ichiro itojun Hagino | |
2006-08-10 | fixes up; | Jason McIntyre | |
2006-06-16 | Don't use rmx_hopcount any longer. The kernel ignores it anyway. | Claudio Jeker | |
OK henning@, norby@, hshoexer@ | |||
2006-04-02 | malloc(x * y) -> calloc(x, y) from adobriyan AT gmail.com, with tweaks | Damien Miller | |
suggested by kjell@; ok otto@ pat@ millert@ jaredy@ | |||
2006-02-06 | typos from alexey dobriyan; | Jason McIntyre | |
2005-05-26 | remove RTM_OLDADD/_OLDDEL traces (that lead to an "unspported" message anyway) | Henning Brauer | |
2004-08-01 | ansi cleanup; khalek@linuxgamers.net | Theo de Raadt | |
2003-10-31 | need_trigger/idx should be u_int, not ssize_t. millert | Jun-ichiro itojun Hagino | |
2003-10-31 | insufficient length check (possible remote DoS). kame PR 507. | Jun-ichiro itojun Hagino | |
ok deraadt markus mcbride | |||
2003-08-22 | Don't age non-gateway host routes. NetBSD PR bin/22568 from Andrew White | Jun-ichiro itojun Hagino | |
2003-08-08 | refer to RFCs consistently (RFC XXXX); | Jason McIntyre | |
2003-06-28 | () to (void) | Theo de Raadt | |
2003-04-22 | port numbers are unsigned. use %u. from kame | Jun-ichiro itojun Hagino | |
2003-04-15 | avoid hardcoding 12; use NI_MAXSERV. deraadt ok | Jun-ichiro itojun Hagino | |
2003-04-14 | %d is 12 chars big, not 10; ok deraadt | Peter Valchev | |
2003-02-11 | typos; | Jason McIntyre | |
raidctl(8) ok millert@ mknetid(8) help maja@ | |||
2002-10-26 | use poll(2). sync w/kame originally from netbsd | Jun-ichiro itojun Hagino | |
2002-10-26 | use strtoul, not atoi. some error handling sync w/kame. | Jun-ichiro itojun Hagino | |
2002-08-21 | suppress dump output on -q. sync w/kame | Jun-ichiro itojun Hagino | |
2002-06-09 | strchr() instead of index() | Theo de Raadt | |
2002-06-07 | avoid fd_set overrun. sync w/kame | Jun-ichiro itojun Hagino | |
2002-06-02 | grammar. from netbsd via kame | Jun-ichiro itojun Hagino | |
2002-05-29 | rtm_seq is an int. from deraadt | Jun-ichiro itojun Hagino | |
2002-05-22 | more strcpy/sprintf death; mpech ok | Theo de Raadt | |
2002-02-25 | do not age address on loopback interface. sync w/kame | Jun-ichiro itojun Hagino | |
2002-02-19 | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | Todd C. Miller | |
2002-02-17 | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | Todd C. Miller | |
outside the tree) | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2002-01-11 | call daemon(3) prior to socket setups to avoid file descriptor close mistakes. | Jun-ichiro itojun Hagino | |
noted by markus, sync with kame | |||
2001-12-01 | Use pidfile() instead of doing the equivalent thing by hand, and sometimes | Miod Vallat | |
forgetting to unlink the pid file at exit. ok millert@ deraadt@ | |||
2001-11-17 | remove unused signal handler variable | Theo de Raadt | |
2001-09-05 | sync with the latest kame route6d. | Jun-ichiro itojun Hagino | |
- no select() with FD_SETSIZE. from deraadt - use sin6 as varaible name, not sin, to avoid symbol conflict with sin(). - other minor cleanups. | |||
2001-06-23 | ok, tmac is now fixed | Theo de Raadt | |
2001-06-23 | join .%A entries; most by bk@rt.fm | Theo de Raadt | |
2001-06-13 | need va_start/end pair every time we call vfprintf(). via markus | Jun-ichiro itojun Hagino | |
2001-03-09 | exit(-#) is wrong | Theo de Raadt | |
2001-03-08 | correct delroute() against host routes. clarify ROUTE6D p2p advert behavior | Jun-ichiro itojun Hagino | |
(no behavior change for normal use). sync with kame |