summaryrefslogtreecommitdiffstats
path: root/sys/netinet/raw_ip.c
diff options
context:
space:
mode:
authorhsu <hsu@FreeBSD.org>2003-08-07 18:16:59 +0000
committerhsu <hsu@FreeBSD.org>2003-08-07 18:16:59 +0000
commit22b74d7669536646fea2e19cfe101635b524360a (patch)
tree19b3069300529d15575ed4e6985a8ef6a20ac290 /sys/netinet/raw_ip.c
parent29ad90976fa4c99c230bbbf38945d03bb662bfd7 (diff)
downloadFreeBSD-src-22b74d7669536646fea2e19cfe101635b524360a.zip
FreeBSD-src-22b74d7669536646fea2e19cfe101635b524360a.tar.gz
1. Basic PIM kernel support
Disabled by default. To enable it, the new "options PIM" must be added to the kernel configuration file (in addition to MROUTING): options MROUTING # Multicast routing options PIM # Protocol Independent Multicast 2. Add support for advanced multicast API setup/configuration and extensibility. 3. Add support for kernel-level PIM Register encapsulation. Disabled by default. Can be enabled by the advanced multicast API. 4. Implement a mechanism for "multicast bandwidth monitoring and upcalls". Submitted by: Pavlin Radoslavov <pavlin@icir.org>
Diffstat (limited to 'sys/netinet/raw_ip.c')
-rw-r--r--sys/netinet/raw_ip.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/netinet/raw_ip.c b/sys/netinet/raw_ip.c
index dd40eb0..05447b4 100644
--- a/sys/netinet/raw_ip.c
+++ b/sys/netinet/raw_ip.c
@@ -383,6 +383,10 @@ rip_ctloutput(so, sopt)
case MRT_DEL_MFC:
case MRT_VERSION:
case MRT_ASSERT:
+ case MRT_API_SUPPORT:
+ case MRT_API_CONFIG:
+ case MRT_ADD_BW_UPCALL:
+ case MRT_DEL_BW_UPCALL:
error = ip_mrouter_get ? ip_mrouter_get(so, sopt) :
EOPNOTSUPP;
break;
@@ -448,6 +452,10 @@ rip_ctloutput(so, sopt)
case MRT_DEL_MFC:
case MRT_VERSION:
case MRT_ASSERT:
+ case MRT_API_SUPPORT:
+ case MRT_API_CONFIG:
+ case MRT_ADD_BW_UPCALL:
+ case MRT_DEL_BW_UPCALL:
error = ip_mrouter_set ? ip_mrouter_set(so, sopt) :
EOPNOTSUPP;
break;
OpenPOWER on IntegriCloud