diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2022-03-13 09:09:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-13 09:09:09 -0400 |
| commit | a0cd0ce4a8dd9a3a8a3dd6824f77cd9ce1df594f (patch) | |
| tree | 3e2078412a9e8a4d6b961699cda8cc5163654173 /pimd/pim_iface.h | |
| parent | b22c93996e4ebe9eeeecb2549811c7c9f67e79e8 (diff) | |
| parent | 97feb13f0f5f2c50335e399b527f53e054cc595a (diff) | |
Merge pull request #10772 from opensourcerouting/pim6-mld-prep
pim6d: address management & MLD preparation
Diffstat (limited to 'pimd/pim_iface.h')
| -rw-r--r-- | pimd/pim_iface.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pimd/pim_iface.h b/pimd/pim_iface.h index 00ec8e7427..a1c946149d 100644 --- a/pimd/pim_iface.h +++ b/pimd/pim_iface.h @@ -96,6 +96,13 @@ struct pim_interface { uint32_t options; /* bit vector */ ifindex_t mroute_vif_index; struct pim_instance *pim; + +#if PIM_IPV == 6 + /* link-locals: MLD uses lowest addr, PIM uses highest... */ + pim_addr ll_lowest; + pim_addr ll_highest; +#endif + pim_addr primary_address; /* remember addr to detect change */ struct list *sec_addr_list; /* list of struct pim_secondary_addr */ pim_addr update_source; /* user can statically set the primary |
