From owner-p4-projects Sat Mar 23 6:38: 1 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 8179337B41B; Sat, 23 Mar 2002 06:37:56 -0800 (PST) Delivered-To: perforce@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8BE037B41A for ; Sat, 23 Mar 2002 06:37:55 -0800 (PST) Received: (from perforce@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2NEbt955279 for perforce@freebsd.org; Sat, 23 Mar 2002 06:37:55 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sat, 23 Mar 2002 06:37:55 -0800 (PST) Message-Id: <200203231437.g2NEbt955279@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson Subject: PERFORCE change 8257 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8257 Change 8257 by rwatson@rwatson_paprika on 2002/03/23 06:37:13 Teach IPv6 link layer neighbor discovery how to label out-going packets. There are two interface arguments present and I think I have the right one. Affected files ... ... //depot/projects/trustedbsd/mac/sys/netinet6/nd6.c#4 edit Differences ... ==== //depot/projects/trustedbsd/mac/sys/netinet6/nd6.c#4 (text+ko) ==== @@ -40,6 +40,7 @@ #include "opt_inet.h" #include "opt_inet6.h" +#include "opt_mac.h" #include #include @@ -2019,6 +2020,9 @@ sendpkt: +#ifdef MAC + mac_create_mbuf_linklayer_for_ifnet(ifp, m); +#endif if ((ifp->if_flags & IFF_LOOPBACK) != 0) { return((*ifp->if_output)(origifp, m, (struct sockaddr *)dst, rt)); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message