diff options
author | Nathan Bahr <nbahr@atcorp.com> | 2024-06-26 19:41:45 +0200 |
---|---|---|
committer | Nathan Bahr <nbahr@atcorp.com> | 2024-08-15 18:20:00 +0200 |
commit | 0cb1bf78736573f13d45e6b138a8c1ac42228b1f (patch) | |
tree | b79a2e0bcbcdbb02d22052f03c300c06d8cd9d16 /pimd/pim_memory.h | |
parent | Merge pull request #16410 from pguibert6WIND/show_zebra_dplane_nexthop (diff) | |
download | frr-0cb1bf78736573f13d45e6b138a8c1ac42228b1f.tar.xz frr-0cb1bf78736573f13d45e6b138a8c1ac42228b1f.zip |
pimd, yang: Implement igmp static-group command
This will add a static IGMP group that does not rely on an underlying
socket join which sends traffic to the cpu unneccesarily. Instead, the
groups are joined directly without any IGMP interactions.
New command is under interfaces, 'ip igmp static-group ...'.
Added an alias for 'ip igmp join ...' to 'ip igmp join-group'.
Moved IGMP join groups to new yang list "join-group" and reused
the "static-group" list for the IGMP static groups.
Signed-off-by: Nathan Bahr <nbahr@atcorp.com>
Diffstat (limited to 'pimd/pim_memory.h')
-rw-r--r-- | pimd/pim_memory.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_memory.h b/pimd/pim_memory.h index 41730e752..8534aab7b 100644 --- a/pimd/pim_memory.h +++ b/pimd/pim_memory.h @@ -13,6 +13,7 @@ DECLARE_MGROUP(PIMD); DECLARE_MTYPE(PIM_CHANNEL_OIL); DECLARE_MTYPE(PIM_INTERFACE); DECLARE_MTYPE(PIM_IGMP_JOIN); +DECLARE_MTYPE(PIM_STATIC_GROUP); DECLARE_MTYPE(PIM_IGMP_SOCKET); DECLARE_MTYPE(PIM_IGMP_GROUP); DECLARE_MTYPE(PIM_IGMP_GROUP_SOURCE); |