Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [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 | |
| 31 | #version any |
| 32 | |
Vishnu Emmadi | 4b9e306 | 2013-10-01 17:10:18 -0700 | [diff] [blame] | 33 | // When the slot_num field has this value, the message applies |
| 34 | // to all currently used slots on the switch for the given port |
Rich Lane | 0355576 | 2014-10-22 11:17:25 -0700 | [diff] [blame] | 35 | enum of_bsn_pdu_slot_num(wire_type=uint8_t, complete=False) { |
Vishnu Emmadi | 4b9e306 | 2013-10-01 17:10:18 -0700 | [diff] [blame] | 36 | BSN_PDU_SLOT_NUM_ANY = 0xff |
| 37 | }; |
| 38 | |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 39 | struct of_bsn_pdu_tx_request : of_bsn_header { |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 40 | uint8_t version; |
| 41 | uint8_t type == 4; |
| 42 | uint16_t length; |
| 43 | uint32_t xid; |
| 44 | uint32_t experimenter == 0x5c16c7; |
| 45 | uint32_t subtype == 31; |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 46 | uint32_t tx_interval_ms; |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 47 | of_port_no_t port_no; |
Vishnu Emmadi | 4b9e306 | 2013-10-01 17:10:18 -0700 | [diff] [blame] | 48 | uint8_t slot_num; |
| 49 | pad(3); |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 50 | of_octets_t data; |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 51 | }; |
| 52 | |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 53 | struct of_bsn_pdu_tx_reply : of_bsn_header { |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 54 | uint8_t version; |
| 55 | uint8_t type == 4; |
| 56 | uint16_t length; |
| 57 | uint32_t xid; |
| 58 | uint32_t experimenter == 0x5c16c7; |
| 59 | uint32_t subtype == 32; |
| 60 | uint32_t status; // 0 means success |
Vishnu Emmadi | feb4925 | 2013-11-08 16:36:07 -0800 | [diff] [blame] | 61 | of_port_no_t port_no; |
| 62 | uint8_t slot_num; |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 63 | }; |
| 64 | |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 65 | struct of_bsn_pdu_rx_request : of_bsn_header { |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 66 | uint8_t version; |
| 67 | uint8_t type == 4; |
| 68 | uint16_t length; |
| 69 | uint32_t xid; |
| 70 | uint32_t experimenter == 0x5c16c7; |
| 71 | uint32_t subtype == 33; |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 72 | uint32_t timeout_ms; |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 73 | of_port_no_t port_no; |
Vishnu Emmadi | 4b9e306 | 2013-10-01 17:10:18 -0700 | [diff] [blame] | 74 | uint8_t slot_num; |
| 75 | pad(3); |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 76 | of_octets_t data; |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 79 | struct of_bsn_pdu_rx_reply : of_bsn_header { |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 80 | uint8_t version; |
| 81 | uint8_t type == 4; |
| 82 | uint16_t length; |
| 83 | uint32_t xid; |
| 84 | uint32_t experimenter == 0x5c16c7; |
| 85 | uint32_t subtype == 34; |
| 86 | uint32_t status; // 0 means success |
Vishnu Emmadi | feb4925 | 2013-11-08 16:36:07 -0800 | [diff] [blame] | 87 | of_port_no_t port_no; |
| 88 | uint8_t slot_num; |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 89 | }; |
| 90 | |
Vishnu Emmadi | e815848 | 2013-09-30 18:25:44 -0700 | [diff] [blame] | 91 | struct of_bsn_pdu_rx_timeout : of_bsn_header { |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 92 | uint8_t version; |
| 93 | uint8_t type == 4; |
| 94 | uint16_t length; |
| 95 | uint32_t xid; |
| 96 | uint32_t experimenter == 0x5c16c7; |
| 97 | uint32_t subtype == 35; |
| 98 | of_port_no_t port_no; |
Vishnu Emmadi | 4b9e306 | 2013-10-01 17:10:18 -0700 | [diff] [blame] | 99 | uint8_t slot_num; |
Vishnu Emmadi | ea53c0f | 2013-09-30 14:54:34 -0700 | [diff] [blame] | 100 | }; |