summaryrefslogtreecommitdiff
path: root/sys/netinet6
AgeCommit message (Collapse)Author
2002-06-11silence some of log(), as the codepath will be visited for IPv6-non-capableJun-ichiro itojun Hagino
interfaces too and can be annoying. net.inet6.icmp6.nd6_debug will re-enable them.
2002-06-11whitespaceJun-ichiro itojun Hagino
2002-06-09whitespace cleanupJun-ichiro itojun Hagino
2002-06-09change M_AUTHxx to openbsd definition (M_AUTH_AH)Jun-ichiro itojun Hagino
2002-06-09correct getpeername(2).Jun-ichiro itojun Hagino
2002-06-08use splnet for ipsecJun-ichiro itojun Hagino
2002-06-08splnet -> splsoftnet where appropriateJun-ichiro itojun Hagino
2002-06-08gcJun-ichiro itojun Hagino
2002-06-08KNFJun-ichiro itojun Hagino
2002-06-08remove #ifdef __NetBSD__Jun-ichiro itojun Hagino
2002-06-08sync 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-06-08typoJun-ichiro itojun Hagino
2002-06-08in6_len2mask is a duplicate of in6_prefixlen2mask. unify. sync w/kameJun-ichiro itojun Hagino
2002-06-08on SIOCAIFADDR_IN6 check if sin6_len is sane. sync w/kameJun-ichiro itojun Hagino
2002-06-07styleJun-ichiro itojun Hagino
2002-06-07move IPV6_CHECKSUM processing to ip6_raw_ctloutput(). bunch of KNFs.Jun-ichiro itojun Hagino
rip6 stats. sync w/kame
2002-06-07typoJun-ichiro itojun Hagino
2002-06-07If there has been no NS for the neighbor after entering theJun-ichiro itojun Hagino
INCOMPLETE state, send the first solicitation in nd6_output(), regardless of the timer value. revised comments about rate-limiting accordingly. sync w/kame
2002-06-07mistake in sysctl tableJun-ichiro itojun Hagino
2002-06-07just for consistency/compatibility, have net.inet6.ip6.v6only sysctl MIB,Jun-ichiro itojun Hagino
as well as set/getsockopt(IPV6_V6ONLY).
2002-06-07styleJun-ichiro itojun Hagino
2002-06-07whitespace sync w/kameJun-ichiro itojun Hagino
2002-06-07whitespace sync w/kameJun-ichiro itojun Hagino
2002-06-07'fall through' is not a valid LINT keyword.Jun-ichiro itojun Hagino
2002-06-07remove support for deprecated ioctls (EINVAL). sync w/kameJun-ichiro itojun Hagino
2002-06-07cope with ndi->maxmtu == 0 case. sync w/kameJun-ichiro itojun Hagino
2002-06-07cope with cases where maxmtu == 0 (shouldn't happen)Jun-ichiro itojun Hagino
2002-06-05be sure to use L3 MTU, not L2 MTU, when specified in spec (affects FDDI/ARCnet)Jun-ichiro itojun Hagino
2002-06-03remove hardcoded assumptions on if_mtu. leave it to sys/net.Jun-ichiro itojun Hagino
makes it possible to take advantage of 9K ethernet.
2002-05-31do not mistakenly lock PMTUD route entry with RTV_MTU.Jun-ichiro itojun Hagino
2002-05-31do not try to update rmx_mtu if rmx_mtu == 0 (obey ifmtu)Jun-ichiro itojun Hagino
2002-05-30improve nd6_setmtu(), to warn too-small MTU on SIOCSIFMTU. sync w/kameJun-ichiro itojun Hagino
2002-05-30use M_READONLY where possible. minor cleanup/sync with kame.Jun-ichiro itojun Hagino
2002-05-30minor KNF. nuke obsolete IFF_LINK0 support completelyJun-ichiro itojun Hagino
2002-05-30minor KNFJun-ichiro itojun Hagino
2002-05-29force fragment to minimum link MTU (1280) when needed (when PMTUD doesJun-ichiro itojun Hagino
not take effect) - like icmp6 responses or foo-over-IPv6 tunnel.
2002-05-29bzero before settingJun-ichiro itojun Hagino
2002-05-29receivedra field is goneJun-ichiro itojun Hagino
2002-05-29no need to supply obsolete field name "receivedra"Jun-ichiro itojun Hagino
2002-05-29attach 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-29set rmx_mtu to 0 on PMTUD route entry timeout.Jun-ichiro itojun Hagino
2002-05-29move per-interface ip6/icmp6 stat to ifnet->if_afdata. sync w/kameJun-ichiro itojun Hagino
2002-05-29rm obsolete commentJun-ichiro itojun Hagino
2002-05-28remove #define for kame portabilityJun-ichiro itojun Hagino
2002-05-28limit number of IPv6 fragments (not the fragment queue size) toJun-ichiro itojun Hagino
fight against lots-of-frags DoS attacks. sync w/kame
2002-05-27kill __PTheo de Raadt
2002-05-24make a strict check before sending FQDN node information reply. sync w/kameJun-ichiro itojun Hagino
2002-05-23simplify condition to perform DAD. sync w/kameJun-ichiro itojun Hagino
2002-05-16bring in ECN support from KAME.Kenjiro Cho
it consists of - ECN support in TCP - tunnel-egress and fragment reassembly rules in layer-3 not to lose congestion info at tunnel-egress and fragment reassembly to enable ECN in TCP, build a kernel with TCP_ECN, and then, turn it on by "sysctl -w net.inet.tcp.ecn=1". ok deraadt@
2002-03-24double m_free() - niklas@openbsdJun-ichiro itojun Hagino