mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-27 10:04:18 +00:00
Merge pull request #472 from qlyoung/rfapi-correct-types
rfapi void * -> struct thread *
This commit is contained in:
commit
8d9cda9f94
@ -85,7 +85,7 @@ struct bgp_info_extra
|
|||||||
} export;
|
} export;
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
void *timer;
|
struct thread *timer;
|
||||||
void *hme; /* encap monitor, if this is a VPN route */
|
void *hme; /* encap monitor, if this is a VPN route */
|
||||||
struct prefix_rd rd; /* import: route's route-distinguisher */
|
struct prefix_rd rd; /* import: route's route-distinguisher */
|
||||||
u_char un_family; /* family of cached un address, 0 if unset */
|
u_char un_family; /* family of cached un address, 0 if unset */
|
||||||
|
@ -40,7 +40,7 @@ struct rfapi_monitor_vpn
|
|||||||
#define RFAPI_MON_FLAG_NEEDCALLBACK 0x00000001 /* deferred callback */
|
#define RFAPI_MON_FLAG_NEEDCALLBACK 0x00000001 /* deferred callback */
|
||||||
|
|
||||||
//int dcount; /* debugging counter */
|
//int dcount; /* debugging counter */
|
||||||
void *timer;
|
struct thread *timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rfapi_monitor_encap
|
struct rfapi_monitor_encap
|
||||||
@ -58,7 +58,7 @@ struct rfapi_monitor_eth
|
|||||||
struct rfapi_descriptor *rfd; /* which NVE requested the route */
|
struct rfapi_descriptor *rfd; /* which NVE requested the route */
|
||||||
struct ethaddr macaddr;
|
struct ethaddr macaddr;
|
||||||
uint32_t logical_net_id;
|
uint32_t logical_net_id;
|
||||||
void *timer;
|
struct thread *timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -78,7 +78,7 @@ struct rfapi_info
|
|||||||
struct bgp_tea_options *tea_options;
|
struct bgp_tea_options *tea_options;
|
||||||
struct rfapi_un_option *un_options;
|
struct rfapi_un_option *un_options;
|
||||||
struct rfapi_vn_option *vn_options;
|
struct rfapi_vn_option *vn_options;
|
||||||
void *timer;
|
struct thread *timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user