summaryrefslogtreecommitdiff
path: root/sys/netinet6/nd6.c
diff options
context:
space:
mode:
authorKlemens Nanni <kn@cvs.openbsd.org>2022-12-07 17:34:21 +0000
committerKlemens Nanni <kn@cvs.openbsd.org>2022-12-07 17:34:21 +0000
commit32f87cabb789b0eeb3f20ad66b0b57243d5980c5 (patch)
tree98207eab9729531462f7c868ce54579c75321814 /sys/netinet6/nd6.c
parent0e35e56c4625da13df8979e2f52d098bb4c38d0a (diff)
Do not store unused ICMPv6 Option PREFIX_INFORMATION
Dead since 2017 sys/netinet6/nd6_rtr.c r1.163 Remove sending of router solicitations and processing of router advertisements from the kernel. It's handled by slaacd(8) these days. sysctl(2) net.inet6.icmp6.nd6_debug does not warn about it like it does for, e.g., duplicate MTU options, so don't do anything with this option. Remove access macros for other unused options while here. Eventually, union nd_opts should be removed completely. All under _KERNEL. tcpdump(8)/rad(8)/slaacd(8) keep showing/sending/receiving this option when running this diff on both router and client. OK claudio
Diffstat (limited to 'sys/netinet6/nd6.c')
-rw-r--r--sys/netinet6/nd6.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c
index e51b11fc04e..0647837b2ef 100644
--- a/sys/netinet6/nd6.c
+++ b/sys/netinet6/nd6.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nd6.c,v 1.257 2022/12/02 15:35:35 kn Exp $ */
+/* $OpenBSD: nd6.c,v 1.258 2022/12/07 17:34:20 kn Exp $ */
/* $KAME: nd6.c,v 1.280 2002/06/08 19:52:07 itojun Exp $ */
/*
@@ -249,13 +249,6 @@ nd6_options(union nd_opts *ndopts)
}
break;
case ND_OPT_PREFIX_INFORMATION:
- if (ndopts->nd_opt_array[nd_opt->nd_opt_type] == 0) {
- ndopts->nd_opt_array[nd_opt->nd_opt_type]
- = nd_opt;
- }
- ndopts->nd_opts_pi_end =
- (struct nd_opt_prefix_info *)nd_opt;
- break;
case ND_OPT_DNSSL:
case ND_OPT_RDNSS:
/* Don't warn */