blob: 201848c526e8a5935306d8ae5bc83c3e9203403e [file] [log] [blame]
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -08001// Copyright 2013, Big Switch Networks, Inc.
2//
3// LoxiGen is licensed under the Eclipse Public License,
4// version 1.0 (EPL), with the following special exception:
5//
6// LOXI Exception
7//
8// As a special exception to the terms of the EPL, you may
9// distribute libraries generated by LoxiGen (LoxiGen Libraries)
10// under the terms of your choice, provided that copyright and
11// licensing notices generated by LoxiGen are not altered or removed
12// from the LoxiGen Libraries and the notice provided below is (i)
13// included in the LoxiGen Libraries, if distributed in source code
14// form and (ii) included in any documentation for the LoxiGen
15// Libraries, if distributed in binary form.
16//
17// Notice: "Copyright 2013, Big Switch Networks, Inc.
18// This library was generated by the LoxiGen Compiler."
19//
20// You may not use this file except in compliance with the EPL or
21// LOXI Exception. You may obtain a copy of the EPL at:
22//
23// http://www.eclipse.org/legal/epl-v10.html
24//
25// Unless required by applicable law or agreed to in writing,
26// software distributed under the License is distributed on an "AS
27// IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
28// express or implied. See the EPL for the specific language
29// governing permissions and limitations under the EPL.
30
Vishnu Emmadiaa9af062013-11-08 18:14:34 -080031#version 4
Rich Lane4b1d8f42014-10-31 15:25:14 -070032#version 5
Murat Parlakisikf95672c2016-12-05 00:53:17 -080033#version 6
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080034
Vishnu Emmadibc14da12013-11-08 16:17:37 -080035// LACP Convergence Status set in of_bsn_lacp_convergence_notif message
Rich Lane03555762014-10-22 11:17:25 -070036enum of_bsn_lacp_convergence_status(wire_type=uint8_t, complete=False) {
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080037 LACP_SUCCESS = 0,
38 LACP_TIMEDOUT = 1,
39 LACP_OUT_OF_SYNC = 2,
40};
41
42struct of_bsn_set_lacp_request : of_bsn_header {
43 uint8_t version;
44 uint8_t type == 4;
45 uint16_t length;
46 uint32_t xid;
47 uint32_t experimenter == 0x5c16c7;
48 uint32_t subtype == 41;
Vishnu Emmadi663e2e52013-11-08 16:16:58 -080049 uint8_t enabled;
Vishnu Emmadiaa9af062013-11-08 18:14:34 -080050 pad(3);
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080051 of_port_no_t port_no;
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080052 uint16_t actor_sys_priority;
53 of_mac_addr_t actor_sys_mac;
54 uint16_t actor_port_priority;
55 uint16_t actor_port_num;
56 uint16_t actor_key;
57};
58
59struct of_bsn_set_lacp_reply : of_bsn_header {
60 uint8_t version;
61 uint8_t type == 4;
62 uint16_t length;
63 uint32_t xid;
64 uint32_t experimenter == 0x5c16c7;
65 uint32_t subtype == 42;
Vishnu Emmadi663e2e52013-11-08 16:16:58 -080066 uint32_t status;
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080067 of_port_no_t port_no;
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080068};
69
70struct of_bsn_lacp_convergence_notif : of_bsn_header {
71 uint8_t version;
72 uint8_t type == 4;
73 uint16_t length;
74 uint32_t xid;
75 uint32_t experimenter == 0x5c16c7;
76 uint32_t subtype == 43;
Vishnu Emmadiaa9af062013-11-08 18:14:34 -080077 uint8_t convergence_status;
78 pad(3);
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080079 of_port_no_t port_no;
80
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080081 uint16_t actor_sys_priority;
82 of_mac_addr_t actor_sys_mac;
83 uint16_t actor_port_priority;
84 uint16_t actor_port_num;
85 uint16_t actor_key;
86
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080087 uint16_t partner_sys_priority;
88 of_mac_addr_t partner_sys_mac;
89 uint16_t partner_port_priority;
90 uint16_t partner_port_num;
91 uint16_t partner_key;
92};
Rich Lane6d434332013-11-13 09:23:10 -080093
94struct of_bsn_lacp_stats_request : of_bsn_stats_request {
95 uint8_t version;
96 uint8_t type == 18;
97 uint16_t length;
98 uint32_t xid;
99 uint16_t stats_type == 0xffff;
100 enum ofp_stats_request_flags flags;
101 pad(4);
102 uint32_t experimenter == 0x5c16c7;
103 uint32_t subtype == 1;
104};
105
106struct of_bsn_lacp_stats_entry {
107 of_port_no_t port_no;
108 uint16_t actor_sys_priority;
109 of_mac_addr_t actor_sys_mac;
110 uint16_t actor_port_priority;
111 uint16_t actor_port_num;
112 uint16_t actor_key;
113 uint8_t convergence_status;
114 pad(1);
115 uint16_t partner_sys_priority;
116 of_mac_addr_t partner_sys_mac;
117 uint16_t partner_port_priority;
118 uint16_t partner_port_num;
119 uint16_t partner_key;
120 pad(2);
121};
122
123struct of_bsn_lacp_stats_reply : of_bsn_stats_reply {
124 uint8_t version;
125 uint8_t type == 19;
126 uint16_t length;
127 uint32_t xid;
128 uint16_t stats_type == 0xffff;
129 enum ofp_stats_reply_flags flags;
130 pad(4);
131 uint32_t experimenter == 0x5c16c7;
132 uint32_t subtype == 1;
133 list(of_bsn_lacp_stats_entry_t) entries;
134};