OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
CVS: cvs.openbsd.org: src

From: Claudio Jeker (claudiocvs.openbsd.org)
Date: Sun Nov 02 2008 - 04:37:30 CST


CVSROOT: /cvs
Module name: src
Changes by: claudiocvs.openbsd.org 2008/11/02 03:37:29

Modified files:
        sys/netinet : tcp_input.c
        sys/netinet6 : ip6_input.c
        sys/sys : mbuf.h

Log message:
Remove the M_ANYCAST6 mbuf flag by doing the detection all in ip6_input().
M_ANYCAST6 was only used to signal tcp6_input() that it should drop the
packet and send back icmp error. This can be done in ip6_input() without
the need for a mbuf flag. Gives us back one slot in m_flags for possible
future need. Looked at and some input by naddy and henning. OK dlg