diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-01-05 22:07:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-05 22:07:00 +0200 |
| commit | 00a93d03a40413ece3b59f54a0d5e37505156da6 (patch) | |
| tree | d019e8f3ad7a86d57453f638697064b9f9f5b719 /pimd/pim_instance.h | |
| parent | b833cc1ff473e5de43a6c33b520024c943db180c (diff) | |
| parent | 6b5122a0be905e7e42b1a14586b60997fca5ad76 (diff) | |
Merge pull request #5601 from donaldsharp/pim_rb
Pim rb
Diffstat (limited to 'pimd/pim_instance.h')
| -rw-r--r-- | pimd/pim_instance.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pimd/pim_instance.h b/pimd/pim_instance.h index dd3ac8fcb0..da0c75decb 100644 --- a/pimd/pim_instance.h +++ b/pimd/pim_instance.h @@ -28,6 +28,8 @@ #include "pim_assert.h" #include "pim_bsm.h" #include "pim_vxlan_instance.h" +#include "pim_oil.h" +#include "pim_upstream.h" #if defined(HAVE_LINUX_MROUTE_H) #include <linux/mroute.h> @@ -107,8 +109,7 @@ struct pim_instance { struct list *static_routes; // Upstream vrf specific information - struct list *upstream_list; - struct hash *upstream_hash; + struct rb_pim_upstream_head upstream_head; struct timer_wheel *upstream_sg_wheel; /* @@ -119,8 +120,7 @@ struct pim_instance { int iface_vif_index[MAXVIFS]; - struct list *channel_oil_list; - struct hash *channel_oil_hash; + struct rb_pim_oil_head channel_oil_head; struct pim_msdp msdp; struct pim_vxlan_instance vxlan; |
