Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-02-10 | remove #if 0'ed code (which was experimental and should never be used) | Jun-ichiro itojun Hagino | |
2005-01-18 | Rewriting the lladdr can now be done without using mbuf tags. | Marco Pfatschbacher | |
Advertisements run through the carp interface first. So we just take the address from ifp0. While we're there, also remove carp_macmatch6, which isn't used anymore. Proposed by mcbride@ ok mcbride@, pascoe@ | |||
2004-12-21 | Check that if_type != IFT_CARP before using ifp->if_carp. | Ryan Thomas McBride | |
2004-10-28 | treat IFT_CARP like IFT_PROPVIRTUAL, ryan daniel ok | Henning Brauer | |
2003-10-31 | Add IPv6 support to CARP. | Ryan Thomas McBride | |
ok deraadt@ | |||
2003-06-27 | split ND6 cache timer management to per-entry. increased accuracy, | Jun-ichiro itojun Hagino | |
no O(N) loop. sync w/ kame. marc tested, daniel ok | |||
2003-06-24 | remove unneeded checks of accept_rtadv. from kame | Jun-ichiro itojun Hagino | |
2003-06-24 | use time.tv_sec directly, rather than having time_second (freebsd NIH). | Jun-ichiro itojun Hagino | |
2003-05-22 | remove break after return | Jun-ichiro itojun Hagino | |
2003-05-14 | make PULLDOWN_TEST codepath the default (has been default for a long time). | Jun-ichiro itojun Hagino | |
markus ok | |||
2002-06-09 | whitespace cleanup | Jun-ichiro itojun Hagino | |
2002-06-08 | splnet -> splsoftnet where appropriate | Jun-ichiro itojun Hagino | |
2002-06-08 | KNF | Jun-ichiro itojun Hagino | |
2002-06-08 | sync with latest KAME in6_ifaddr/prefix/default router manipulation. | Jun-ichiro itojun Hagino | |
behavior changes: - two iocts used by ndp(8) are now obsolete (backward compat provided). use sysctl path instead. - lo0 does not get ::1 automatically. it will get ::1 when lo0 comes up. | |||
2002-05-29 | attach nd_ifinfo structure to if_afdata. | Jun-ichiro itojun Hagino | |
split IPv6 MTU (advertised by RA) from real link MTU. sync with kame | |||
2002-05-28 | remove #define for kame portability | Jun-ichiro itojun Hagino | |
2002-03-15 | s/0/NULL/ for pointer assignment. sync w/kame | Jun-ichiro itojun Hagino | |
2002-03-14 | First round of __P removal in sys | Todd C. Miller | |
2001-12-07 | whitespace/comment sync with kame | Jun-ichiro itojun Hagino | |
2001-11-30 | unifdef OLDIP6OUTPUT | Jun-ichiro itojun Hagino | |
2001-06-09 | No need for net/net_osdep.h | Angelos D. Keromytis | |
2001-02-23 | garbage-collect stale ND entries (default: 1 day). | Jun-ichiro itojun Hagino | |
RFC 2461 5.3. sync with kame. | |||
2001-02-16 | oops, remove #ifdef __fooBSD__. | Jun-ichiro itojun Hagino | |
2001-02-16 | make sure to clear ln_byhint when neighbor state goes to REACHABLE. | Jun-ichiro itojun Hagino | |
sync whitespace/comment with kame. | |||
2001-02-08 | use timeout_xx() throughout sys/netinet6. sync with kame. | Jun-ichiro itojun Hagino | |
2001-02-07 | by default, don't bark on inbound ND messages, as outsider may be able to | Jun-ichiro itojun Hagino | |
fill up /var with bogus packets. setting net.inet6.icmp6.nd6_debug will re-enable kernel messages on invalid ND packet and other occasions. improve icmp6 stats. | |||
2001-01-18 | wrap too noisy warnings into #ifdef ND6_DEBUG | Jun-ichiro itojun Hagino | |
2000-05-19 | never forward packet with link-local address. | Jun-ichiro itojun Hagino | |
experimental support for new loopback packet handling (with FAKE_LOOPBACK_IF, rcvif will be set to real outgoing interface, not the loopback, to honor scope) sync with kame. | |||
2000-02-28 | bring in recent KAME changes (only important and stable ones, as usual). | Jun-ichiro itojun Hagino | |
- remove net.inet6.ip6.nd6_proxyall. introduce proxy NDP code works just like "arp -s". - revise source address selection. be more careful about use of yet-to-be-valid addresses as source. - as router, transmit ICMP6_DST_UNREACH_BEYONDSCOPE against out-of-scope packet forwarding attempt. - path MTU discovery takes care of routing header properly. - be more strict about mbuf chain parsing. - nuke xxCTL_VARS #define, they are for BSDI. - disable SIOCSIFDSTADDR_IN6/SIOCSIFNETMASK_IN6 ioctl, they do not fit IPv6 model where multiple address on interface is normal. (kernel side supports them for a while for backward compat, the support will be nuked shortly) - introduce "default outgoing interface" (for spec conformance in very rare case) | |||
2000-02-07 | use log(), not printf(), for DAD messages. | Jun-ichiro itojun Hagino | |
make more checks on mbuf length for outbound packets. correct include file path. | |||
2000-01-08 | pull in arc4random() prototype | Theo de Raadt | |
2000-01-08 | use arc4random() instead of random for two reasons. | Theo de Raadt | |
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 | |||
1999-12-15 | do not overwrite traffic class portion when filling in IPv6 version field. | Jun-ichiro itojun Hagino | |
1999-12-10 | Remove remaining unnecessary ifdefs (itojun will hate me for this :-) | Angelos D. Keromytis | |
1999-12-08 | silence more DAD debugging information | Theo de Raadt | |
1999-12-08 | silence non-duplicate DAD completion messages | Theo de Raadt | |
1999-12-08 | bring in KAME IPv6 code, dated 19991208. | Jun-ichiro itojun Hagino | |
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). |