svn commit: r232866 - head/sys/netinet
Randall Stewart
rrs at FreeBSD.org
Mon Mar 12 15:05:18 UTC 2012
Author: rrs
Date: Mon Mar 12 15:05:17 2012
New Revision: 232866
URL: http://svn.freebsd.org/changeset/base/232866
Log:
This fixes PR 165210. Basically we just
add in the netgraph interface to the list of
acceptable interfaces. A todo at the next
IETF code blitz, though is we need to review
why we screen interfaces, there was a reason ;-).
PR: 165210
MFC after: 1 week
Modified:
head/sys/netinet/sctp_bsd_addr.c
Modified: head/sys/netinet/sctp_bsd_addr.c
==============================================================================
--- head/sys/netinet/sctp_bsd_addr.c Mon Mar 12 14:07:57 2012 (r232865)
+++ head/sys/netinet/sctp_bsd_addr.c Mon Mar 12 15:05:17 2012 (r232866)
@@ -184,6 +184,7 @@ sctp_is_desired_interface_type(struct if
case IFT_IP:
case IFT_IPOVERCDLC:
case IFT_IPOVERCLAW:
+ case IFT_PROPVIRTUAL: /* NetGraph Virtual too */
case IFT_VIRTUALIPADDRESS:
result = 1;
break;
More information about the svn-src-head
mailing list