diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2021-12-14 17:53:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-14 17:53:59 +0100 |
| commit | 8627cf473be110b8398f2a707b1ede2d1e78b25c (patch) | |
| tree | 4c557fc6789ef969577be22ff3950a54d0830c8d /pimd/pim_iface.c | |
| parent | 991ff333b61d96a3c081391ab479d1b9462f98ac (diff) | |
| parent | c5f76fad1a2b0f6127d7b8ef94f24798e60dbbd6 (diff) | |
Merge pull request #10168 from SaiGomathiN/struct-change
Diffstat (limited to 'pimd/pim_iface.c')
| -rw-r--r-- | pimd/pim_iface.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pimd/pim_iface.c b/pimd/pim_iface.c index effc6fbb8d..6e901c9f76 100644 --- a/pimd/pim_iface.c +++ b/pimd/pim_iface.c @@ -158,7 +158,7 @@ struct pim_interface *pim_if_new(struct interface *ifp, bool igmp, bool pim, pim_ifp->upstream_switch_list = NULL; pim_ifp->pim_generation_id = 0; - /* list of struct igmp_sock */ + /* list of struct gm_sock */ pim_igmp_if_init(pim_ifp, ifp); /* list of struct pim_neighbor */ @@ -530,7 +530,7 @@ void pim_if_addr_add(struct connected *ifc) // return; if (PIM_IF_TEST_IGMP(pim_ifp->options)) { - struct igmp_sock *igmp; + struct gm_sock *igmp; /* lookup IGMP socket */ igmp = pim_igmp_sock_lookup_ifaddr(pim_ifp->socket_list, @@ -581,7 +581,7 @@ void pim_if_addr_add(struct connected *ifc) } } /* igmp */ else { - struct igmp_sock *igmp; + struct gm_sock *igmp; /* lookup IGMP socket */ igmp = pim_igmp_sock_lookup_ifaddr(pim_ifp->socket_list, @@ -646,7 +646,7 @@ void pim_if_addr_add(struct connected *ifc) static void pim_if_addr_del_igmp(struct connected *ifc) { struct pim_interface *pim_ifp = ifc->ifp->info; - struct igmp_sock *igmp; + struct gm_sock *igmp; struct in_addr ifaddr; if (ifc->address->family != AF_INET) { |
