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_config.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_config.h')
-rw-r--r-- | src/plugins/igmp/igmp_config.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/igmp/igmp_config.h b/src/plugins/igmp/igmp_config.h index a9f48a768fa..0da2525a851 100644 --- a/src/plugins/igmp/igmp_config.h +++ b/src/plugins/igmp/igmp_config.h @@ -53,7 +53,7 @@ typedef struct igmp_config_t_ adj_index_t adj_index; /** - * @param moe - host or router + * @param mode - host or router */ igmp_mode_t mode; @@ -71,6 +71,11 @@ typedef struct igmp_config_t_ * A vector of scheduled query-response timers */ igmp_timer_id_t timers[IGMP_CONFIG_N_TIMERS]; + + /** + * ID of a proxy device this configuration is on + */ + u32 proxy_device_id; } igmp_config_t; #define FOR_EACH_GROUP(_group, _config, _body) \ |