summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/dest6.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Pass down the address family through the pr_input calls. Thisbluhm2017-04-141-2/+2
| | | | | allows to simplify code used for both IPv4 and IPv6. OK mikeb@ deraadt@
* Use percpu counters for ip6statjca2017-02-051-2/+2
| | | | | | | | | Try to follow the existing examples. Some notes: - don't implement counters_dec() yet, which could be used in two similar chunks of code. Let's see if there are more users first. - stop incrementing IPv6-specific mbuf stats, IPv4 has no equivalent. Input from mpi@, ok bluhm@ mpi@
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-3/+1
| | | | | | | have any direct symbols used. Tested for indirect use by compiling amd64/i386/sparc64 kernels. ok tedu@ deraadt@
* remove uneeded route.h includesjsg2014-09-081-2/+1
| | | | ok miod@ mpi@
* Do not include <sys/malloc.h> where it is not needed.mpi2014-06-031-2/+1
|
* The header file netinet/in_var.h included netinet6/in6_var.h. Thisbluhm2013-10-171-2/+1
| | | | | | | created a bunch of useless dependencies. Remove this implicit inclusion and do an explicit #include <netinet6/in6_var.h> when it is needed. OK mpi@ henning@
* ANSIfy to sync with KAME. From Karl Sjodahl <dunceor@gmail.com>.mcbride2008-06-111-4/+2
| | | | ok todd deraadt naddy bluhm
* make PULLDOWN_TEST codepath the default (has been default for a long time).itojun2003-05-141-11/+1
| | | | markus ok
* minor KNFitojun2002-05-301-4/+5
|
* be more more picky about ip6 destopt parsing. sync with kameitojun2001-02-221-3/+4
|
* make validation code more strict for ND6/dest6 variable length headers.itojun2001-02-211-11/+8
| | | | | check duplicated nd6_ifinfo table initialization in a better way. sync with kame
* cosmetic/whitespace sync with kameitojun2001-02-161-22/+22
|
* sync whitespace/comment with kame. to help merge tasksitojun2001-02-161-4/+5
|
* kill register declarations. to sync with kame better.itojun2001-02-161-2/+2
|
* fix include file path related to ip6.itojun2000-02-071-3/+3
|
* Remove remaining unnecessary ifdefs (itojun will hate me for this :-)angelos1999-12-101-4/+1
|
* bring in KAME IPv6 code, dated 19991208.itojun1999-12-081-0/+123
replaces NRL IPv6 layer. reuses NRL pcb layer. no IPsec-on-v6 support. see sys/netinet6/{TODO,IMPLEMENTATION} for more details. GENERIC configuration should work fine as before. GENERIC.v6 works fine as well, but you'll need KAME userland tools to play with IPv6 (will be bringed into soon).