diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-30 09:10:05 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-30 09:34:03 -0400 |
| commit | 294b6d7243983270d69c85aaa8528c78a2521da5 (patch) | |
| tree | 6c9c9d41c078e58eb8bc0d001aa61c82194bc012 /pimd/pim_iface.h | |
| parent | eeff6d3f99c8965bbb4870d9ca0f8da5f6a53e57 (diff) | |
pimd: Receive incoming v6 addresses and place in pim_ifp list
Add code to properly receive v6 addresses up from zebra and to
properly place them into our interface secondary address list.
Additionally cleanup some code in pim_cmd.c that was broken
by these changes.
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 8d332c70b0..f4d7518d7a 100644 --- a/pimd/pim_iface.h +++ b/pimd/pim_iface.h @@ -69,7 +69,7 @@ enum pim_secondary_addr_flags { }; struct pim_secondary_addr { - struct in_addr addr; + struct prefix addr; enum pim_secondary_addr_flags flags; }; |
