CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2022/08/21 08:15:55
Modified files: sys/netinet : ip_input.c sys/netinet6 : ip6_input.c Log message: Remove ip_local() and ip6_local(). After moving the IPv4 fragment reassembly and IPv6 hob-by-hob header chain processing out of ip_local() and ip6_local(), they are almost empty stubs. The check for local deliver loop in ip_ours() and ip6_ours() is sufficient. Recover mbuf offset and next protocol directly in ipintr() and ip6intr(). OK mvs@