FD.io VPP  v18.07.1-19-g511ce25
Vector Packet Processing
machine.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef __LACP_MACHINE_H__
17 #define __LACP_MACHINE_H__
18 
19 #include <stdint.h>
20 
21 #define LACP_NOACTION ((int (*)(void *, void *))0)
22 #define LACP_ACTION_ROUTINE(rtn) ((int(*)(void *, void *))rtn)
23 
24 typedef int (*action_func) (void *, void *);
25 
26 typedef struct
27 {
31 
32 typedef void (*debug_func) (slave_if_t * sif, int event, int state,
33  lacp_fsm_state_t * transition);
34 
35 typedef struct
36 {
39 
40 typedef struct
41 {
45 
46 extern int lacp_machine_dispatch (lacp_machine_t * machine, vlib_main_t * vm,
47  slave_if_t * sif, int event, int *state);
48 
49 #endif /* __LACP_MACHINE_H__ */
50 
51 /*
52  * fd.io coding-style-patch-verification: ON
53  *
54  * Local Variables:
55  * eval: (c-set-style "gnu")
56  * End:
57  */
void(* debug_func)(slave_if_t *sif, int event, int state, lacp_fsm_state_t *transition)
Definition: machine.h:32
int(* action_func)(void *, void *)
Definition: machine.h:24
lacp_fsm_state_t * state_table
Definition: machine.h:37
action_func action
Definition: machine.h:28
vhost_vring_state_t state
Definition: vhost_user.h:115
vlib_main_t * vm
Definition: buffer.c:294
int lacp_machine_dispatch(lacp_machine_t *machine, vlib_main_t *vm, slave_if_t *sif, int event, int *state)
Definition: lacp.c:286
debug_func debug
Definition: machine.h:43
lacp_fsm_machine_t * tables
Definition: machine.h:42