blob: 1db56126eedae05c8a5816d88ec490b595ffcbdc [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
31#version any
32
33// LACP Convergence Status set in of_bsn_lacp_convergence_status message
34enum of_bsn_lacp_convergence_status_t(wire_type=uint16_t, complete=False) {
35 LACP_SUCCESS = 0,
36 LACP_TIMEDOUT = 1,
37 LACP_OUT_OF_SYNC = 2,
38};
39
40struct of_bsn_set_lacp_request : of_bsn_header {
41 uint8_t version;
42 uint8_t type == 4;
43 uint16_t length;
44 uint32_t xid;
45 uint32_t experimenter == 0x5c16c7;
46 uint32_t subtype == 41;
47 uint8_t enabled; // 0 means stop running lacp on the given port,
48 // anything else means start running lacp on the given port
49 // with the given actor parameters.
50 pad(1);
51 of_port_no_t port_no;
52 // LACP Actor Parameters - valid only if enabled is not 0
53 uint16_t actor_sys_priority;
54 of_mac_addr_t actor_sys_mac;
55 uint16_t actor_port_priority;
56 uint16_t actor_port_num;
57 uint16_t actor_key;
58};
59
60struct of_bsn_set_lacp_reply : of_bsn_header {
61 uint8_t version;
62 uint8_t type == 4;
63 uint16_t length;
64 uint32_t xid;
65 uint32_t experimenter == 0x5c16c7;
66 uint32_t subtype == 42;
67 uint32_t status; // 0 means success
68 of_port_no_t port_no;
69 uint16_t actor_sys_priority;
70 of_mac_addr_t actor_sys_mac;
71 uint16_t actor_port_priority;
72 uint16_t actor_port_num;
73 uint16_t actor_key;
74};
75
76struct of_bsn_lacp_convergence_notif : of_bsn_header {
77 uint8_t version;
78 uint8_t type == 4;
79 uint16_t length;
80 uint32_t xid;
81 uint32_t experimenter == 0x5c16c7;
82 uint32_t subtype == 43;
83 uint16_t convergence_status;
84 of_port_no_t port_no;
85
86 // Actor Parameters configured by controller
87 uint16_t actor_sys_priority;
88 of_mac_addr_t actor_sys_mac;
89 uint16_t actor_port_priority;
90 uint16_t actor_port_num;
91 uint16_t actor_key;
92
93 // Partner Parameters are valid only if convergence status is success
94 uint16_t partner_sys_priority;
95 of_mac_addr_t partner_sys_mac;
96 uint16_t partner_port_priority;
97 uint16_t partner_port_num;
98 uint16_t partner_key;
99};