git.droids-corp.org
/
dpdk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
build: remove makefiles
[dpdk.git]
/
app
/
test
/
test_flow_classify.h
1
/* SPDX-License-Identifier: BSD-3-Clause
2
* Copyright(c) 2017 Intel Corporation
3
*/
4
5
#ifndef TEST_FLOW_CLASSIFY_H_
6
#define TEST_FLOW_CLASSIFY_H_
7
8
/* ACL field definitions for IPv4 5 tuple rule */
9
10
enum {
11
PROTO_FIELD_IPV4,
12
SRC_FIELD_IPV4,
13
DST_FIELD_IPV4,
14
SRCP_FIELD_IPV4,
15
DSTP_FIELD_IPV4,
16
NUM_FIELDS_IPV4
17
};
18
19
enum {
20
PROTO_INPUT_IPV4,
21
SRC_INPUT_IPV4,
22
DST_INPUT_IPV4,
23
SRCP_DESTP_INPUT_IPV4
24
};
25
26
#endif /* TEST_FLOW_CLASSIFY_H_ */