blob: ed36b0d3592daada8b492d9f6f31df0c8604d811 [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
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080033
Vishnu Emmadibc14da12013-11-08 16:17:37 -080034// LACP Convergence Status set in of_bsn_lacp_convergence_notif message
Rich Lane03555762014-10-22 11:17:25 -070035enum of_bsn_lacp_convergence_status(wire_type=uint8_t, complete=False) {
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080036 LACP_SUCCESS = 0,
37 LACP_TIMEDOUT = 1,
38 LACP_OUT_OF_SYNC = 2,
39};
40
41struct of_bsn_set_lacp_request : of_bsn_header {
42 uint8_t version;
43 uint8_t type == 4;
44 uint16_t length;
45 uint32_t xid;
46 uint32_t experimenter == 0x5c16c7;
47 uint32_t subtype == 41;
Vishnu Emmadi663e2e52013-11-08 16:16:58 -080048 uint8_t enabled;
Vishnu Emmadiaa9af062013-11-08 18:14:34 -080049 pad(3);
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080050 of_port_no_t port_no;
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080051 uint16_t actor_sys_priority;
52 of_mac_addr_t actor_sys_mac;
53 uint16_t actor_port_priority;
54 uint16_t actor_port_num;
55 uint16_t actor_key;
56};
57
58struct of_bsn_set_lacp_reply : of_bsn_header {
59 uint8_t version;
60 uint8_t type == 4;
61 uint16_t length;
62 uint32_t xid;
63 uint32_t experimenter == 0x5c16c7;
64 uint32_t subtype == 42;
Vishnu Emmadi663e2e52013-11-08 16:16:58 -080065 uint32_t status;
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080066 of_port_no_t port_no;
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080067};
68
69struct of_bsn_lacp_convergence_notif : of_bsn_header {
70 uint8_t version;
71 uint8_t type == 4;
72 uint16_t length;
73 uint32_t xid;
74 uint32_t experimenter == 0x5c16c7;
75 uint32_t subtype == 43;
Vishnu Emmadiaa9af062013-11-08 18:14:34 -080076 uint8_t convergence_status;
77 pad(3);
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080078 of_port_no_t port_no;
79
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080080 uint16_t actor_sys_priority;
81 of_mac_addr_t actor_sys_mac;
82 uint16_t actor_port_priority;
83 uint16_t actor_port_num;
84 uint16_t actor_key;
85
Vishnu Emmadice7ebdf2013-11-08 16:11:42 -080086 uint16_t partner_sys_priority;
87 of_mac_addr_t partner_sys_mac;
88 uint16_t partner_port_priority;
89 uint16_t partner_port_num;
90 uint16_t partner_key;
91};
Rich Lane6d434332013-11-13 09:23:10 -080092
93struct of_bsn_lacp_stats_request : of_bsn_stats_request {
94 uint8_t version;
95 uint8_t type == 18;
96 uint16_t length;
97 uint32_t xid;
98 uint16_t stats_type == 0xffff;
99 enum ofp_stats_request_flags flags;
100 pad(4);
101 uint32_t experimenter == 0x5c16c7;
102 uint32_t subtype == 1;
103};
104
105struct of_bsn_lacp_stats_entry {
106 of_port_no_t port_no;
107 uint16_t actor_sys_priority;
108 of_mac_addr_t actor_sys_mac;
109 uint16_t actor_port_priority;
110 uint16_t actor_port_num;
111 uint16_t actor_key;
112 uint8_t convergence_status;
113 pad(1);
114 uint16_t partner_sys_priority;
115 of_mac_addr_t partner_sys_mac;
116 uint16_t partner_port_priority;
117 uint16_t partner_port_num;
118 uint16_t partner_key;
119 pad(2);
120};
121
122struct of_bsn_lacp_stats_reply : of_bsn_stats_reply {
123 uint8_t version;
124 uint8_t type == 19;
125 uint16_t length;
126 uint32_t xid;
127 uint16_t stats_type == 0xffff;
128 enum ofp_stats_reply_flags flags;
129 pad(4);
130 uint32_t experimenter == 0x5c16c7;
131 uint32_t subtype == 1;
132 list(of_bsn_lacp_stats_entry_t) entries;
133};