diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-31 16:41:12 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-02 13:44:00 +0200 |
commit | 86b473a7e810bc8cfb37fbf9d733048e83c59fbd (patch) | |
tree | e587a9cbf1f6ef6f0119ed5f97c469e208310d64 /pimd/pim_iface.h | |
parent | pimd: Remove almost duplicate pim->ifchannel_list (diff) | |
download | frr-86b473a7e810bc8cfb37fbf9d733048e83c59fbd.tar.xz frr-86b473a7e810bc8cfb37fbf9d733048e83c59fbd.zip |
pimd: Rename pim_ifp->pim_ifchannel_list
Remove the redundant information in pim_ifp->pim_ifchannel_list
just call it pim_ifp->ifchannel_list
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_iface.h')
-rw-r--r-- | pimd/pim_iface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_iface.h b/pimd/pim_iface.h index 963d41fc3..7739e3af2 100644 --- a/pimd/pim_iface.h +++ b/pimd/pim_iface.h @@ -106,7 +106,7 @@ struct pim_interface { uint16_t pim_override_interval_msec; /* config */ struct list *pim_neighbor_list; /* list of struct pim_neighbor */ struct list *upstream_switch_list; - struct list *pim_ifchannel_list; /* list of struct pim_ifchannel */ + struct list *ifchannel_list; struct hash *pim_ifchannel_hash; /* neighbors without lan_delay */ |