diff options
author | Steven Luong <sluong@cisco.com> | 2020-07-15 08:44:54 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-07-28 12:13:49 +0000 |
commit | 4c4223edfd46841062340fe449cd97a93dccc498 (patch) | |
tree | 8daedd7264e235e273a4e23d209a2baca80781d0 /src/plugins/lacp/machine.h | |
parent | 4d1423c5ace249f6609a41fadec9e4b9c4b323de (diff) |
bonding lacp: replace slave string with member
- Replace textual string slave with member except APIs.
- For APIs, mark the existing APIs as deprecated and introduce new APIs
- While introducing sw_bond_interface_dump, add the optional filter by
sw_if_index and enhance the testcases to make use of it.
Type: improvement
Signed-off-by: Steven Luong <sluong@cisco.com>
Change-Id: Ib6626c514e45350308aeeda0decb70f3aba2f63e
Diffstat (limited to 'src/plugins/lacp/machine.h')
-rw-r--r-- | src/plugins/lacp/machine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lacp/machine.h b/src/plugins/lacp/machine.h index 0590b6cf101..2e628b6d51c 100644 --- a/src/plugins/lacp/machine.h +++ b/src/plugins/lacp/machine.h @@ -29,7 +29,7 @@ typedef struct int next_state; } lacp_fsm_state_t; -typedef void (*debug_func) (slave_if_t * sif, int event, int state, +typedef void (*debug_func) (member_if_t * mif, int event, int state, lacp_fsm_state_t * transition); typedef struct @@ -44,7 +44,7 @@ typedef struct } lacp_machine_t; extern int lacp_machine_dispatch (lacp_machine_t * machine, vlib_main_t * vm, - slave_if_t * sif, int event, int *state); + member_if_t * mif, int event, int *state); #endif /* __LACP_MACHINE_H__ */ |