Up to [cvs.NetBSD.org] / src / sys / netinet6
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: netbsd-1-5
Revision 1.17.4.4 / (download) - annotate - [select for diffs], Tue Sep 9 10:36:20 2003 UTC (17 years, 4 months ago) by msaitoh
Branch: netbsd-1-5
Changes since 1.17.4.3: +2 -2
lines
Diff to previous 1.17.4.3 (colored) to branchpoint 1.17 (colored) next main 1.18 (colored)
Pull up rev. 1.50 (requested by itojun in ticket #50): enforce ipsec policy on raw wildcard.
Revision 1.17.4.3 / (download) - annotate - [select for diffs], Sun Mar 11 21:12:19 2001 UTC (19 years, 10 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001
Changes since 1.17.4.2: +10 -10
lines
Diff to previous 1.17.4.2 (colored) to branchpoint 1.17 (colored)
Pull up revision 1.28 (via patch, requested by itojun): Ensure that we enforce inbound IPsec policy on all IP protocols, not just TCP, UDP and ICMP.
Revision 1.17.4.2 / (download) - annotate - [select for diffs], Tue Oct 17 21:40:26 2000 UTC (20 years, 3 months ago) by tv
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-RELEASE,
netbsd-1-5-BETA2,
netbsd-1-5-BETA
Changes since 1.17.4.1: +3 -3
lines
Diff to previous 1.17.4.1 (colored) to branchpoint 1.17 (colored)
Pullup 1.20 [enami]: Don't initialize TCP twice on v4/v6 dual stack kernel.
Revision 1.17.4.1 / (download) - annotate - [select for diffs], Wed Aug 16 01:22:26 2000 UTC (20 years, 5 months ago) by itojun
Branch: netbsd-1-5
Changes since 1.17: +5 -5
lines
Diff to previous 1.17 (colored)
pullup (approved by releng-1-5) switch from net.inet*.*.*ratelimit to net.inet*.*.ppslimit. (tags are rough estimate - we had some try-and-error in main trunc) sys/netinet/icmp6.h 1.9 -> 1.11 sys/netinet/icmp_var.h 1.15 -> 1.17 sys/netinet/in_proto.c 1.39 -> 1.42 sys/netinet/ip_icmp.c 1.50 -> 1.51, 1.52 -> 1.54 sys/netinet/tcp_input.c 1.111 -> 1.112, 1.115 -> 1.117 sys/netinet/tcp_usrreq.c 1.52 -> 1.53 sys/netinet/tcp_var.h 1.72 -> 1.75 sys/netinet6/icmp6.c 1.34 -> 1.35, 1.36 -> 1.38 sys/netinet6/in6_proto.c 1.17 -> 1.19
Revision 1.17 / (download) - annotate - [select for diffs], Wed Apr 19 06:30:56 2000 UTC (20 years, 9 months ago) by itojun
Branch: MAIN
CVS Tags: netbsd-1-5-base,
netbsd-1-5-ALPHA2,
minoura-xpg4dl-base,
minoura-xpg4dl
Branch point for: netbsd-1-5
Changes since 1.16: +21 -9
lines
Diff to previous 1.16 (colored)
introduce sys/netinet/ip_encap.c, to dispatch inbound packets to protocol handlers, based on src/dst (for ip proto #4/41). see comment in ip_encap.c for details of the problem we have. there are too many protocol specs for ip proto #4/41. backward compatibility with MROUTING case is now provided in ip_encap.c. fix ipip to work with gif (using ip_encap.c). sorry for breakage. gif now uses ip_encap.c. introduce stf pseudo interface (implements 6to4, another IPv6-over-IPv4 code with ip proto #41).