mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 21:33:55 +00:00
zebra: Remove typedef rib_tables_iter_state from system
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
f921557186
commit
4d5647d076
@ -287,11 +287,11 @@ typedef struct rib_table_info_t_ {
|
|||||||
|
|
||||||
} rib_table_info_t;
|
} rib_table_info_t;
|
||||||
|
|
||||||
typedef enum {
|
enum rib_tables_iter_state {
|
||||||
RIB_TABLES_ITER_S_INIT,
|
RIB_TABLES_ITER_S_INIT,
|
||||||
RIB_TABLES_ITER_S_ITERATING,
|
RIB_TABLES_ITER_S_ITERATING,
|
||||||
RIB_TABLES_ITER_S_DONE
|
RIB_TABLES_ITER_S_DONE
|
||||||
} rib_tables_iter_state_t;
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Structure that holds state for iterating over all tables in the
|
* Structure that holds state for iterating over all tables in the
|
||||||
@ -301,7 +301,7 @@ typedef struct rib_tables_iter_t_ {
|
|||||||
vrf_id_t vrf_id;
|
vrf_id_t vrf_id;
|
||||||
int afi_safi_ix;
|
int afi_safi_ix;
|
||||||
|
|
||||||
rib_tables_iter_state_t state;
|
enum rib_tables_iter_state state;
|
||||||
} rib_tables_iter_t;
|
} rib_tables_iter_t;
|
||||||
|
|
||||||
/* Events/reasons triggering a RIB update. */
|
/* Events/reasons triggering a RIB update. */
|
||||||
|
Loading…
Reference in New Issue
Block a user