diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2022-05-17 07:20:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-17 07:20:08 -0400 |
| commit | 8a8ad459af710c0b91cddef5ca354d34e59a823f (patch) | |
| tree | 6f3aef2da70394bc110e555e68f3cc02cbd9c040 /pimd/pim_instance.h | |
| parent | b2ca7559b4caa282e56e5be9ba9e3731466939be (diff) | |
| parent | 9299cea5dc112583242aaa11ee45c4a777673a07 (diff) | |
Merge pull request #10775 from opensourcerouting/pim6-mld-pr
pim6d: MLD code
Diffstat (limited to 'pimd/pim_instance.h')
| -rw-r--r-- | pimd/pim_instance.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pimd/pim_instance.h b/pimd/pim_instance.h index f8323deda0..b19e8208ba 100644 --- a/pimd/pim_instance.h +++ b/pimd/pim_instance.h @@ -167,6 +167,10 @@ struct pim_instance { struct list *ssmpingd_list; pim_addr ssmpingd_group_addr; + unsigned int gm_socket_if_count; + int gm_socket; + struct thread *t_gm_recv; + unsigned int igmp_group_count; unsigned int igmp_watermark_limit; unsigned int keep_alive_time; @@ -194,6 +198,8 @@ struct pim_instance { int64_t nexthop_lookups; int64_t nexthop_lookups_avoided; int64_t last_route_change_time; + + uint64_t gm_rx_drop_sys; }; void pim_vrf_init(void); |
