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 |
Rich Lane | 4b1d8f4 | 2014-10-31 15:25:14 -0700 | [diff] [blame] | 32 | #version 5 |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 33 | |
Vishnu Emmadi | bc14da1 | 2013-11-08 16:17:37 -0800 | [diff] [blame] | 34 | // LACP Convergence Status set in of_bsn_lacp_convergence_notif message |
Rich Lane | 0355576 | 2014-10-22 11:17:25 -0700 | [diff] [blame] | 35 | enum of_bsn_lacp_convergence_status(wire_type=uint8_t, complete=False) { |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 36 | LACP_SUCCESS = 0, |
| 37 | LACP_TIMEDOUT = 1, |
| 38 | LACP_OUT_OF_SYNC = 2, |
| 39 | }; |
| 40 | |
| 41 | struct 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 Emmadi | 663e2e5 | 2013-11-08 16:16:58 -0800 | [diff] [blame] | 48 | uint8_t enabled; |
Vishnu Emmadi | aa9af06 | 2013-11-08 18:14:34 -0800 | [diff] [blame] | 49 | pad(3); |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 50 | of_port_no_t port_no; |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 51 | 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 | |
| 58 | struct 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 Emmadi | 663e2e5 | 2013-11-08 16:16:58 -0800 | [diff] [blame] | 65 | uint32_t status; |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 66 | of_port_no_t port_no; |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | struct 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 Emmadi | aa9af06 | 2013-11-08 18:14:34 -0800 | [diff] [blame] | 76 | uint8_t convergence_status; |
| 77 | pad(3); |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 78 | of_port_no_t port_no; |
| 79 | |
Vishnu Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 80 | 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 Emmadi | ce7ebdf | 2013-11-08 16:11:42 -0800 | [diff] [blame] | 86 | 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 Lane | 6d43433 | 2013-11-13 09:23:10 -0800 | [diff] [blame] | 92 | |
| 93 | struct 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 | |
| 105 | struct 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 | |
| 122 | struct 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 | }; |