CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2022/12/09 10:32:53
Modified files: sys/netinet6 : icmp6.c nd6.c nd6.h nd6_nbr.c nd6_rtr.c Log message: Switch nd_opts from a union to just a struct. The ND6 option handling in the kernel got a lot simpler since only the tgt and src lladdr option are inspected by the kernel. The magic of assigning options via one side of the union and accessing them via the other is total overkill and actually quite error prone. OK florian@