Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 1 | // 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 Emmadi | aa9af06 | 2013-11-08 18:14:34 -0800 | [diff] [blame] | 31 | #version 4 |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 32 | |
Vishnu Emmadi | bc14da1 | 2013-11-08 16:17:37 -0800 | [diff] [blame] | 33 | // LACP Convergence Status set in of_bsn_lacp_convergence_notif message |
Vishnu Emmadi | aa9af06 | 2013-11-08 18:14:34 -0800 | [diff] [blame] | 34 | enum of_bsn_lacp_convergence_status_t(wire_type=uint8_t, complete=False) { |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 35 | LACP_SUCCESS = 0, |
| 36 | LACP_TIMEDOUT = 1, |
| 37 | LACP_OUT_OF_SYNC = 2, |
| 38 | }; |
| 39 | |
| 40 | struct 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; |
Vishnu Emmadi | 663e2e5 | 2013-11-08 16:16:58 -0800 | [diff] [blame] | 47 | uint8_t enabled; |
Vishnu Emmadi | aa9af06 | 2013-11-08 18:14:34 -0800 | [diff] [blame] | 48 | pad(3); |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 49 | of_port_no_t port_no; |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 50 | uint16_t actor_sys_priority; |
| 51 | of_mac_addr_t actor_sys_mac; |
| 52 | uint16_t actor_port_priority; |
| 53 | uint16_t actor_port_num; |
| 54 | uint16_t actor_key; |
| 55 | }; |
| 56 | |
| 57 | struct of_bsn_set_lacp_reply : of_bsn_header { |
| 58 | uint8_t version; |
| 59 | uint8_t type == 4; |
| 60 | uint16_t length; |
| 61 | uint32_t xid; |
| 62 | uint32_t experimenter == 0x5c16c7; |
| 63 | uint32_t subtype == 42; |
Vishnu Emmadi | 663e2e5 | 2013-11-08 16:16:58 -0800 | [diff] [blame] | 64 | uint32_t status; |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 65 | of_port_no_t port_no; |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 66 | }; |
| 67 | |
| 68 | struct of_bsn_lacp_convergence_notif : of_bsn_header { |
| 69 | uint8_t version; |
| 70 | uint8_t type == 4; |
| 71 | uint16_t length; |
| 72 | uint32_t xid; |
| 73 | uint32_t experimenter == 0x5c16c7; |
| 74 | uint32_t subtype == 43; |
Vishnu Emmadi | aa9af06 | 2013-11-08 18:14:34 -0800 | [diff] [blame] | 75 | uint8_t convergence_status; |
| 76 | pad(3); |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 77 | of_port_no_t port_no; |
| 78 | |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 79 | uint16_t actor_sys_priority; |
| 80 | of_mac_addr_t actor_sys_mac; |
| 81 | uint16_t actor_port_priority; |
| 82 | uint16_t actor_port_num; |
| 83 | uint16_t actor_key; |
| 84 | |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 85 | uint16_t partner_sys_priority; |
| 86 | of_mac_addr_t partner_sys_mac; |
| 87 | uint16_t partner_port_priority; |
| 88 | uint16_t partner_port_num; |
| 89 | uint16_t partner_key; |
| 90 | }; |
Rich Lane | 6d43433 | 2013-11-13 09:23:10 -0800 | [diff] [blame] | 91 | |
| 92 | struct of_bsn_lacp_stats_request : of_bsn_stats_request { |
| 93 | uint8_t version; |
| 94 | uint8_t type == 18; |
| 95 | uint16_t length; |
| 96 | uint32_t xid; |
| 97 | uint16_t stats_type == 0xffff; |
| 98 | enum ofp_stats_request_flags flags; |
| 99 | pad(4); |
| 100 | uint32_t experimenter == 0x5c16c7; |
| 101 | uint32_t subtype == 1; |
| 102 | }; |
| 103 | |
| 104 | struct of_bsn_lacp_stats_entry { |
| 105 | of_port_no_t port_no; |
| 106 | uint16_t actor_sys_priority; |
| 107 | of_mac_addr_t actor_sys_mac; |
| 108 | uint16_t actor_port_priority; |
| 109 | uint16_t actor_port_num; |
| 110 | uint16_t actor_key; |
| 111 | uint8_t convergence_status; |
| 112 | pad(1); |
| 113 | uint16_t partner_sys_priority; |
| 114 | of_mac_addr_t partner_sys_mac; |
| 115 | uint16_t partner_port_priority; |
| 116 | uint16_t partner_port_num; |
| 117 | uint16_t partner_key; |
| 118 | pad(2); |
| 119 | }; |
| 120 | |
| 121 | struct of_bsn_lacp_stats_reply : of_bsn_stats_reply { |
| 122 | uint8_t version; |
| 123 | uint8_t type == 19; |
| 124 | uint16_t length; |
| 125 | uint32_t xid; |
| 126 | uint16_t stats_type == 0xffff; |
| 127 | enum ofp_stats_reply_flags flags; |
| 128 | pad(4); |
| 129 | uint32_t experimenter == 0x5c16c7; |
| 130 | uint32_t subtype == 1; |
| 131 | list(of_bsn_lacp_stats_entry_t) entries; |
| 132 | }; |