mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 10:09:17 +00:00
pimd: Modifying in_addr to pim_addr in struct pim_nexthop for IPv6.
Changed struct in_addr last_lookup to struct PIM_ADDR last_lookup which is to be used in both IPv4 and IPv6(Both MLD and IGMP). Reviewed-by: Mobashshera Rasool <mrasool@vmware.com> Signed-off-by: sarita patra <saritap@vmware.com>
This commit is contained in:
parent
d1257ae9e6
commit
d02ea60665
@ -21,6 +21,7 @@
|
|||||||
#define PIM_RPF_H
|
#define PIM_RPF_H
|
||||||
|
|
||||||
#include <zebra.h>
|
#include <zebra.h>
|
||||||
|
#include "pim_str.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
RFC 4601:
|
RFC 4601:
|
||||||
@ -35,7 +36,7 @@
|
|||||||
units applicable to the unicast routing protocol used.
|
units applicable to the unicast routing protocol used.
|
||||||
*/
|
*/
|
||||||
struct pim_nexthop {
|
struct pim_nexthop {
|
||||||
struct in_addr last_lookup;
|
pim_addr last_lookup;
|
||||||
long long last_lookup_time;
|
long long last_lookup_time;
|
||||||
struct interface *interface; /* RPF_interface(S) */
|
struct interface *interface; /* RPF_interface(S) */
|
||||||
struct prefix mrib_nexthop_addr; /* MRIB.next_hop(S) */
|
struct prefix mrib_nexthop_addr; /* MRIB.next_hop(S) */
|
||||||
|
Loading…
Reference in New Issue
Block a user