mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 05:18:47 +00:00
pimd: Modifying in_addr to pim_addr in igmp_join for IPv6.
Changed struct in_addr source_addr to pim_addr source_addr in struct igmp_join which is to be used in both IPv4 and IPv6(Both MLD and IGMP). Reviewed-by: Sarita Patra <saritap@vmware.com> Signed-off-by: Mobashshera Rasool <mrasool@vmware.com>
This commit is contained in:
parent
12e7634018
commit
5e8d3f4f5e
@ -26,6 +26,7 @@
|
|||||||
#include "vty.h"
|
#include "vty.h"
|
||||||
#include "linklist.h"
|
#include "linklist.h"
|
||||||
#include "pim_igmp_stats.h"
|
#include "pim_igmp_stats.h"
|
||||||
|
#include "pim_str.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
The following sizes are likely to support
|
The following sizes are likely to support
|
||||||
@ -76,8 +77,8 @@
|
|||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
struct gm_join {
|
struct gm_join {
|
||||||
struct in_addr group_addr;
|
pim_addr group_addr;
|
||||||
struct in_addr source_addr;
|
pim_addr source_addr;
|
||||||
int sock_fd;
|
int sock_fd;
|
||||||
time_t sock_creation;
|
time_t sock_creation;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user