Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1 | /* Copyright (C) 2007-2012 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2 | * |
| 3 | * Marek Lindner, Simon Wunderlich |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of version 2 of the GNU General Public |
| 7 | * License as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 17 | * 02110-1301, USA |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #ifndef _NET_BATMAN_ADV_PACKET_H_ |
| 21 | #define _NET_BATMAN_ADV_PACKET_H_ |
| 22 | |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 23 | #define BATADV_ETH_P_BATMAN 0x4305 /* unofficial/not registered Ethertype */ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 24 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 25 | enum batadv_packettype { |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 26 | BATADV_IV_OGM = 0x01, |
| 27 | BATADV_ICMP = 0x02, |
| 28 | BATADV_UNICAST = 0x03, |
| 29 | BATADV_BCAST = 0x04, |
| 30 | BATADV_VIS = 0x05, |
| 31 | BATADV_UNICAST_FRAG = 0x06, |
| 32 | BATADV_TT_QUERY = 0x07, |
| 33 | BATADV_ROAM_ADV = 0x08, |
| 34 | BATADV_UNICAST_4ADDR = 0x09, |
| 35 | }; |
| 36 | |
| 37 | /** |
| 38 | * enum batadv_subtype - packet subtype for unicast4addr |
| 39 | * @BATADV_P_DATA: user payload |
| 40 | */ |
| 41 | enum batadv_subtype { |
| 42 | BATADV_P_DATA = 0x01, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 43 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 44 | |
| 45 | /* this file is included by batctl which needs these defines */ |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 46 | #define BATADV_COMPAT_VERSION 14 |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 47 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 48 | enum batadv_iv_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 49 | BATADV_NOT_BEST_NEXT_HOP = BIT(3), |
| 50 | BATADV_PRIMARIES_FIRST_HOP = BIT(4), |
| 51 | BATADV_VIS_SERVER = BIT(5), |
| 52 | BATADV_DIRECTLINK = BIT(6), |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 53 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 54 | |
| 55 | /* ICMP message types */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 56 | enum batadv_icmp_packettype { |
| 57 | BATADV_ECHO_REPLY = 0, |
| 58 | BATADV_DESTINATION_UNREACHABLE = 3, |
| 59 | BATADV_ECHO_REQUEST = 8, |
| 60 | BATADV_TTL_EXCEEDED = 11, |
| 61 | BATADV_PARAMETER_PROBLEM = 12, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 62 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 63 | |
| 64 | /* vis defines */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 65 | enum batadv_vis_packettype { |
| 66 | BATADV_VIS_TYPE_SERVER_SYNC = 0, |
| 67 | BATADV_VIS_TYPE_CLIENT_UPDATE = 1, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 68 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 69 | |
| 70 | /* fragmentation defines */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 71 | enum batadv_unicast_frag_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 72 | BATADV_UNI_FRAG_HEAD = BIT(0), |
| 73 | BATADV_UNI_FRAG_LARGETAIL = BIT(1), |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 74 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 75 | |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 76 | /* TT_QUERY subtypes */ |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 77 | #define BATADV_TT_QUERY_TYPE_MASK 0x3 |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 78 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 79 | enum batadv_tt_query_packettype { |
| 80 | BATADV_TT_REQUEST = 0, |
| 81 | BATADV_TT_RESPONSE = 1, |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | /* TT_QUERY flags */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 85 | enum batadv_tt_query_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 86 | BATADV_TT_FULL_TABLE = BIT(2), |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 87 | }; |
| 88 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 89 | /* BATADV_TT_CLIENT flags. |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 90 | * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to |
| 91 | * BIT(15) are used for local computation only |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 92 | */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 93 | enum batadv_tt_client_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 94 | BATADV_TT_CLIENT_DEL = BIT(0), |
| 95 | BATADV_TT_CLIENT_ROAM = BIT(1), |
| 96 | BATADV_TT_CLIENT_WIFI = BIT(2), |
Antonio Quartulli | 30cfd02 | 2012-07-05 23:38:29 +0200 | [diff] [blame] | 97 | BATADV_TT_CLIENT_TEMP = BIT(3), |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 98 | BATADV_TT_CLIENT_NOPURGE = BIT(8), |
| 99 | BATADV_TT_CLIENT_NEW = BIT(9), |
| 100 | BATADV_TT_CLIENT_PENDING = BIT(10), |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 101 | }; |
| 102 | |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 103 | /* claim frame types for the bridge loop avoidance */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 104 | enum batadv_bla_claimframe { |
Simon Wunderlich | 3eb8773 | 2012-06-23 12:34:18 +0200 | [diff] [blame] | 105 | BATADV_CLAIM_TYPE_CLAIM = 0x00, |
| 106 | BATADV_CLAIM_TYPE_UNCLAIM = 0x01, |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 107 | BATADV_CLAIM_TYPE_ANNOUNCE = 0x02, |
| 108 | BATADV_CLAIM_TYPE_REQUEST = 0x03, |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | /* the destination hardware field in the ARP frame is used to |
| 112 | * transport the claim type and the group id |
| 113 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 114 | struct batadv_bla_claim_dst { |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 115 | uint8_t magic[3]; /* FF:43:05 */ |
| 116 | uint8_t type; /* bla_claimframe */ |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 117 | __be16 group; /* group id */ |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 118 | }; |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 119 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 120 | struct batadv_header { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 121 | uint8_t packet_type; |
| 122 | uint8_t version; /* batman version field */ |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 123 | uint8_t ttl; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 124 | /* the parent struct has to add a byte after the header to make |
| 125 | * everything 4 bytes aligned again |
| 126 | */ |
| 127 | }; |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 128 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 129 | struct batadv_ogm_packet { |
| 130 | struct batadv_header header; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 131 | uint8_t flags; /* 0x40: DIRECTLINK flag, 0x20 VIS_SERVER flag... */ |
Al Viro | e0f5211 | 2012-04-22 07:46:29 +0100 | [diff] [blame] | 132 | __be32 seqno; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 133 | uint8_t orig[ETH_ALEN]; |
| 134 | uint8_t prev_sender[ETH_ALEN]; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 135 | uint8_t gw_flags; /* flags related to gateway class */ |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 136 | uint8_t tq; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 137 | uint8_t tt_num_changes; |
| 138 | uint8_t ttvn; /* translation table version number */ |
Al Viro | 16a7034 | 2012-04-22 07:45:29 +0100 | [diff] [blame] | 139 | __be16 tt_crc; |
Sven Eckelmann | aa0adb1 | 2011-01-15 14:39:43 +0000 | [diff] [blame] | 140 | } __packed; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 141 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 142 | #define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 143 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 144 | struct batadv_icmp_packet { |
| 145 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 146 | uint8_t msg_type; /* see ICMP message types above */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 147 | uint8_t dst[ETH_ALEN]; |
| 148 | uint8_t orig[ETH_ALEN]; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 149 | __be16 seqno; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 150 | uint8_t uid; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 151 | uint8_t reserved; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 152 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 153 | |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 154 | #define BATADV_RR_LEN 16 |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 155 | |
| 156 | /* icmp_packet_rr must start with all fields from imcp_packet |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 157 | * as this is assumed by code that handles ICMP packets |
| 158 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 159 | struct batadv_icmp_packet_rr { |
| 160 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 161 | uint8_t msg_type; /* see ICMP message types above */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 162 | uint8_t dst[ETH_ALEN]; |
| 163 | uint8_t orig[ETH_ALEN]; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 164 | __be16 seqno; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 165 | uint8_t uid; |
| 166 | uint8_t rr_cur; |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 167 | uint8_t rr[BATADV_RR_LEN][ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 168 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 169 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 170 | struct batadv_unicast_packet { |
| 171 | struct batadv_header header; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 172 | uint8_t ttvn; /* destination translation table version number */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 173 | uint8_t dest[ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 174 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 175 | * following ethernet header again 4 bytes boundary aligned |
| 176 | */ |
| 177 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 178 | |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 179 | /** |
| 180 | * struct batadv_unicast_4addr_packet - extended unicast packet |
| 181 | * @u: common unicast packet header |
| 182 | * @src: address of the source |
| 183 | * @subtype: packet subtype |
| 184 | */ |
| 185 | struct batadv_unicast_4addr_packet { |
| 186 | struct batadv_unicast_packet u; |
| 187 | uint8_t src[ETH_ALEN]; |
| 188 | uint8_t subtype; |
| 189 | uint8_t reserved; |
| 190 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 191 | * following ethernet header again 4 bytes boundary aligned |
| 192 | */ |
| 193 | }; |
| 194 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 195 | struct batadv_unicast_frag_packet { |
| 196 | struct batadv_header header; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 197 | uint8_t ttvn; /* destination translation table version number */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 198 | uint8_t dest[ETH_ALEN]; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 199 | uint8_t flags; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 200 | uint8_t align; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 201 | uint8_t orig[ETH_ALEN]; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 202 | __be16 seqno; |
Sven Eckelmann | aa0adb1 | 2011-01-15 14:39:43 +0000 | [diff] [blame] | 203 | } __packed; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 204 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 205 | struct batadv_bcast_packet { |
| 206 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 207 | uint8_t reserved; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 208 | __be32 seqno; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 209 | uint8_t orig[ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 210 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 211 | * following ethernet header again 4 bytes boundary aligned |
| 212 | */ |
Sven Eckelmann | aa0adb1 | 2011-01-15 14:39:43 +0000 | [diff] [blame] | 213 | } __packed; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 214 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 215 | struct batadv_vis_packet { |
| 216 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 217 | uint8_t vis_type; /* which type of vis-participant sent this? */ |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 218 | __be32 seqno; /* sequence number */ |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 219 | uint8_t entries; /* number of entries behind this struct */ |
| 220 | uint8_t reserved; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 221 | uint8_t vis_orig[ETH_ALEN]; /* originator reporting its neighbors */ |
| 222 | uint8_t target_orig[ETH_ALEN]; /* who should receive this packet */ |
| 223 | uint8_t sender_orig[ETH_ALEN]; /* who sent or forwarded this packet */ |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 224 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 225 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 226 | struct batadv_tt_query_packet { |
| 227 | struct batadv_header header; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 228 | /* the flag field is a combination of: |
| 229 | * - TT_REQUEST or TT_RESPONSE |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 230 | * - TT_FULL_TABLE |
| 231 | */ |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 232 | uint8_t flags; |
| 233 | uint8_t dst[ETH_ALEN]; |
| 234 | uint8_t src[ETH_ALEN]; |
| 235 | /* the ttvn field is: |
| 236 | * if TT_REQUEST: ttvn that triggered the |
| 237 | * request |
| 238 | * if TT_RESPONSE: new ttvn for the src |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 239 | * orig_node |
| 240 | */ |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 241 | uint8_t ttvn; |
| 242 | /* tt_data field is: |
| 243 | * if TT_REQUEST: crc associated with the |
| 244 | * ttvn |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 245 | * if TT_RESPONSE: table_size |
| 246 | */ |
| 247 | __be16 tt_data; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 248 | } __packed; |
| 249 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 250 | struct batadv_roam_adv_packet { |
| 251 | struct batadv_header header; |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 252 | uint8_t reserved; |
| 253 | uint8_t dst[ETH_ALEN]; |
| 254 | uint8_t src[ETH_ALEN]; |
| 255 | uint8_t client[ETH_ALEN]; |
| 256 | } __packed; |
| 257 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 258 | struct batadv_tt_change { |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 259 | uint8_t flags; |
| 260 | uint8_t addr[ETH_ALEN]; |
| 261 | } __packed; |
| 262 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 263 | #endif /* _NET_BATMAN_ADV_PACKET_H_ */ |