diff options
| author | David Lamparter <equinox@diac24.net> | 2021-12-14 17:33:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-14 17:33:24 +0100 |
| commit | 29e582259046e8a48c1a8e81a8eaef9804bb4c5d (patch) | |
| tree | 7628866bccb42b55e19b3fc6f3397bfd99bb6ca6 /pimd/pim_iface.h | |
| parent | 991ff333b61d96a3c081391ab479d1b9462f98ac (diff) | |
Revert "pimd: Modifying members of pim_interface to accommodate IPv6 changes"
Diffstat (limited to 'pimd/pim_iface.h')
| -rw-r--r-- | pimd/pim_iface.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/pimd/pim_iface.h b/pimd/pim_iface.h index bf8e4bd024..72168b690a 100644 --- a/pimd/pim_iface.h +++ b/pimd/pim_iface.h @@ -100,13 +100,13 @@ struct pim_interface { struct in_addr update_source; /* user can statically set the primary * address of the interface */ - int version; /* IGMP or MLD version */ - int default_robustness_variable; /* IGMP or MLD QRV */ - int default_query_interval; /* IGMP or MLD secs between general + int igmp_version; /* IGMP version */ + int igmp_default_robustness_variable; /* IGMPv3 QRV */ + int igmp_default_query_interval; /* IGMPv3 secs between general queries */ - int query_max_response_time_dsec; /* IGMP or MLD Max Response Time in + int igmp_query_max_response_time_dsec; /* IGMPv3 Max Response Time in dsecs for general queries */ - int specific_query_max_response_time_dsec; /* IGMP or MLD Max Response + int igmp_specific_query_max_response_time_dsec; /* IGMPv3 Max Response Time in dsecs called as last member query interval, defines the @@ -114,11 +114,11 @@ struct pim_interface { advertised in IGMP group-specific queries */ - int last_member_query_count; /* IGMP or MLD last member query count */ - struct list *socket_list; /* list of struct IGMP or MLD sock */ - struct list *join_list; /* list of struct IGMP or MLD join */ - struct list *group_list; /* list of struct IGMP or MLD group */ - struct hash *group_hash; + int igmp_last_member_query_count; /* IGMP last member query count */ + struct list *igmp_socket_list; /* list of struct igmp_sock */ + struct list *igmp_join_list; /* list of struct igmp_join */ + struct list *igmp_group_list; /* list of struct igmp_group */ + struct hash *igmp_group_hash; int pim_sock_fd; /* PIM socket file descriptor */ struct thread *t_pim_sock_read; /* thread for reading PIM socket */ |
