@@ -8,53 +8,63 @@ package ofp14
8
8
9
9
const (
10
10
// Immutable messages (symmetric)
11
+
11
12
OFPT_HELLO = 0
12
13
OFPT_ERROR = 1
13
14
OFPT_ECHO_REQUEST = 2
14
15
OFPT_ECHO_REPLY = 3
15
16
OFPT_EXPERIMENTER = 4
16
17
17
- /* Switch configuration messages */
18
+ // Switch configuration messages
19
+
18
20
OFPT_FEATURES_REQUEST = 5
19
21
OFPT_FEATURES_REPLY = 6
20
22
OFPT_GET_CONFIG_REQUEST = 7
21
23
OFPT_GET_CONFIG_REPLY = 8
22
24
OFPT_SET_CONFIG = 9
23
25
24
- /* Asynchronous messages */
26
+ // Asynchronous messages
27
+
25
28
OFPT_PACKET_IN = 10
26
29
OFPT_FLOW_REMOVED = 11
27
30
OFPT_PORT_STATUS = 12
28
31
29
- /* Controller command messages */
32
+ // Controller command messages
33
+
30
34
OFPT_PACKET_OUT = 13
31
35
OFPT_FLOW_MOD = 14
32
36
OFPT_GROUP_MOD = 15
33
37
OFPT_PORT_MOD = 16
34
38
OFPT_TABLE_MOD = 17
35
39
36
- /* Multipart messages */
40
+ // Multipart messages
41
+
37
42
OFPT_MULTIPART_REQUEST = 18
38
43
OFPT_MULTIPART_REPLY = 19
39
44
40
- /* Barrier messages. */
45
+ // Barrier messages
46
+
41
47
OFPT_BARRIER_REQUEST = 20
42
48
OFPT_BARRIER_REPLY = 21
43
49
44
- /* Queue Configuration messages */
50
+ // Queue Configuration messages
51
+
45
52
OFPT_QUEUE_GET_CONFIG_REQUEST = 22
46
53
OFPT_QUEUE_GET_CONFIG_REPLY = 23
47
54
48
- /* Controller role change request messages */
55
+ // Controller role change request messages
56
+
49
57
OFPT_ROLE_REQUEST = 24
50
58
OFPT_ROLE_REPLY = 25
51
59
52
- /* Asynchronous message configuration */
60
+ // Asynchronous message configuration
61
+
53
62
OFPT_GET_ASYNC_REQUEST = 26
54
63
OFPT_GET_ASYNC_REPLY = 27
55
64
OFPT_SET_ASYNC = 28
56
65
57
- /* Meters and rate limiters configuration messages */
66
+ // Meters and rate limiters configuration messages
67
+
58
68
OFPT_METER_MOD = 29
59
69
OFPT_MAX_TYPE = 29
60
70
@@ -165,7 +175,9 @@ const (
165
175
OXM_VALUE_OFFSET = 4
166
176
167
177
FLOWMOD_MATCH_OFFSET = 48 // offset of 'match' field within a FLOWMOD
178
+
168
179
// OXM0: the first OXM TLV
180
+
169
181
FLOWMOD_MATCH_OXM0_OFFSET = 52
170
182
171
183
OFPXMC_OPENFLOW_BASIC = 0x8000
0 commit comments