Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-06-03 | remove 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-31 | do not mistakenly lock PMTUD route entry with RTV_MTU. | Jun-ichiro itojun Hagino | |
2002-05-31 | do not try to update rmx_mtu if rmx_mtu == 0 (obey ifmtu) | Jun-ichiro itojun Hagino | |
2002-05-30 | improve nd6_setmtu(), to warn too-small MTU on SIOCSIFMTU. sync w/kame | Jun-ichiro itojun Hagino | |
2002-05-30 | use M_READONLY where possible. minor cleanup/sync with kame. | Jun-ichiro itojun Hagino | |
2002-05-30 | minor KNF. nuke obsolete IFF_LINK0 support completely | Jun-ichiro itojun Hagino | |
2002-05-30 | minor KNF | Jun-ichiro itojun Hagino | |
2002-05-29 | force fragment to minimum link MTU (1280) when needed (when PMTUD does | Jun-ichiro itojun Hagino | |
not take effect) - like icmp6 responses or foo-over-IPv6 tunnel. | |||
2002-05-29 | bzero before setting | Jun-ichiro itojun Hagino | |
2002-05-29 | receivedra field is gone | Jun-ichiro itojun Hagino | |
2002-05-29 | no need to supply obsolete field name "receivedra" | Jun-ichiro itojun Hagino | |
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-29 | set rmx_mtu to 0 on PMTUD route entry timeout. | Jun-ichiro itojun Hagino | |
2002-05-29 | move per-interface ip6/icmp6 stat to ifnet->if_afdata. sync w/kame | Jun-ichiro itojun Hagino | |
2002-05-29 | rm obsolete comment | Jun-ichiro itojun Hagino | |
2002-05-28 | remove #define for kame portability | Jun-ichiro itojun Hagino | |
2002-05-28 | limit number of IPv6 fragments (not the fragment queue size) to | Jun-ichiro itojun Hagino | |
fight against lots-of-frags DoS attacks. sync w/kame | |||
2002-05-27 | kill __P | Theo de Raadt | |
2002-05-24 | make a strict check before sending FQDN node information reply. sync w/kame | Jun-ichiro itojun Hagino | |
2002-05-23 | simplify condition to perform DAD. sync w/kame | Jun-ichiro itojun Hagino | |
2002-05-16 | bring 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-24 | double m_free() - niklas@openbsd | Jun-ichiro itojun Hagino | |
2002-03-23 | correct arg to bcmp(). need to compare 15 bytes, not 3 bytes. sync w/kame | Jun-ichiro itojun Hagino | |
2002-03-20 | remove obsolete comment | Jun-ichiro itojun Hagino | |
2002-03-19 | check sa_len/family strictly | Jun-ichiro itojun Hagino | |
2002-03-15 | Kill #if __STDC__ used to do K&R vs. ANSI varargs/stdarg; just do things | Todd C. Miller | |
the ANSI way. | |||
2002-03-15 | have a real lock around IPv6 reassembly. | Jun-ichiro itojun Hagino | |
2002-03-15 | s/0/NULL/ for pointer assignment. sync w/kame | Jun-ichiro itojun Hagino | |
2002-03-15 | Cosmetic changes only, primarily making comments line up nicely after the | Todd C. Miller | |
__P removal. | |||
2002-03-14 | Final __P removal plus some cosmetic fixups | Todd C. Miller | |
2002-03-14 | First round of __P removal in sys | Todd C. Miller | |
2002-03-05 | on redirect output, always try to attach target link layer address option. | Jun-ichiro itojun Hagino | |
2002-02-10 | spelling | Theo de Raadt | |
2002-01-23 | compatability -> compatibility. | Federico G. Schwindt | |
2002-01-21 | remove couple of #if 0'ed portion we will never use | Jun-ichiro itojun Hagino | |
2002-01-08 | do not log() in per-packet input path. sync w/kame | Jun-ichiro itojun Hagino | |
2002-01-08 | correct behavior of IPv4 over IPv6 tunnel (using gif). | Jun-ichiro itojun Hagino | |
http://archives.neohapsis.com/archives/openbsd/2001-09/0165.html From: Alexander Yurchenko <grange@rt.mipt.ru> | |||
2002-01-02 | at least ; required after label or case; openbsd@davidkrause.com | Theo de Raadt | |
2001-12-16 | - Call pf_test6() after we have checked header length and protocol version. | jasoni | |
- If pf_test6 returns a NULL mbuf, just return. - Reinitialize pointer to header after pf_test6(). ok frantzen@ | |||
2001-12-07 | give up local, instead of remote, on ping6 -w during memory starved | Jun-ichiro itojun Hagino | |
situation. validate hostname encoding more strictly. | |||
2001-12-07 | correct icmp6 MIB counter mistake | Jun-ichiro itojun Hagino | |
2001-12-07 | whitespace/comment sync with kame | Jun-ichiro itojun Hagino | |
2001-12-06 | remove kame IPSEC code within #ifdef. | Jun-ichiro itojun Hagino | |
2001-11-30 | unifdef OLDIP6OUTPUT | Jun-ichiro itojun Hagino | |
2001-11-28 | typo in sockopt level name (ipsec6 related) | Jun-ichiro itojun Hagino | |
2001-11-26 | add fastroute options similar to what is found in ipf | jasoni | |
ok dhartmei@, frantzen@ | |||
2001-11-06 | Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary. | Miod Vallat | |
(Look ma, I might have broken the tree) | |||
2001-11-02 | do not return value that overruns mbuf length from ip6_nexthdr. | Jun-ichiro itojun Hagino | |
2001-10-01 | reinitialize ip6_hdr pointer after pf_test; ok dhartmei@ (noticed after | jasoni | |
discussion with itojun on ip6_forward) | |||
2001-09-29 | filter forwarded ipv6 packets; checked by itojun, tested by | jasoni | |
mcbride@countersiege.com |