xref: /dpdk/examples/ipsec-secgw/flow.h (revision b3a4baf87f44d7cd08693a2d1b710e3ce4e70e59)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (C) 2020 Marvell International Ltd.
3  */
4 
5 #ifndef _FLOW_H_
6 #define _FLOW_H_
7 
8 #include "parser.h"
9 
10 void parse_flow_tokens(char **tokens, uint32_t n_tokens,
11 		       struct parse_status *status);
12 
13 void flow_init(void);
14 void flow_print_counters(void);
15 
16 #endif /* _FLOW_H_ */
17