xref: /dpdk/examples/ipsec-secgw/flow.h (revision 68a03efeed657e6e05f281479b33b51102797e15)
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 
15 #endif /* _FLOW_H_ */
16