summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/mld6_var.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* use arc4random_uniform() for random number requests that are not adjm2008-04-181-2/+2
| | | | | | | | | power of two. use arc4random_bytes() when requesting more than a word of PRNG output. ok deraadt@
* - sync up MLD declaration with RFC3542 (s/MLD6/MLD/)itojun2003-06-111-4/+4
| | | | | | | | | | | - routing header declaration with RFC3542 (note: sizeof(ip6_rthdr0) has changed!) also, sync up with RFC2460 routing header definition (no "strict" source routing mode any more) part of advanced API update (RFC2292 -> 3542). markus, todd, millert, henning ok
* First round of __P removal in sysmillert2002-03-141-6/+6
|
* sync whitespace/comment with kame. to help merge tasksitojun2001-02-161-5/+6
|
* use arc4random() instead of random for two reasons.deraadt2000-01-081-2/+2
| | | | | | 1) on some architectures, random() should only be used by the scheduler (ie. statintr() because it is uniformly distributed 2) arc4random() is actually strong, random() is not at all
* bring in KAME IPv6 code, dated 19991208.itojun1999-12-081-0/+52
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).