diff options
author | Jakub Grajciar <jgrajcia@cisco.com> | 2018-10-04 11:05:35 +0200 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-10-16 08:28:15 +0000 |
commit | 97748cae2e6261d8fdc7c331a4d82828ac51ed81 (patch) | |
tree | 503ec3556042aef7d0b1575baca06fd239d09828 /src/plugins/igmp/igmp.h | |
parent | 02a95ce8d53caeba07a3c027b12339f44f3093b8 (diff) |
IGMP: proxy device
Create 'proxy device' per VRF and add one upstream
and one or many downstream interfaces.
Change-Id: I1cef05fb01e73a5b483c7a2f4debaaeffe2c8155
Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Diffstat (limited to 'src/plugins/igmp/igmp.h')
-rw-r--r-- | src/plugins/igmp/igmp.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugins/igmp/igmp.h b/src/plugins/igmp/igmp.h index 626d9879158..9f9b611a649 100644 --- a/src/plugins/igmp/igmp.h +++ b/src/plugins/igmp/igmp.h @@ -28,6 +28,7 @@ #include <igmp/igmp_timer.h> #include <igmp/igmp_group.h> #include <igmp/igmp_config.h> +#include <igmp/igmp_proxy.h> /** * RFC 3376 Section 8.1 @@ -101,6 +102,16 @@ typedef struct igmp_main_t_ * pool of sources */ igmp_src_t *srcs; + + /** + * per-vrf DB of proxy devices + */ + u32 *igmp_proxy_device_by_vrf_id; + + /** + * pool of proxy devices + */ + igmp_proxy_device_t *proxy_devices; } igmp_main_t; extern igmp_main_t igmp_main; |