batman-adv: Add required includes to all files
[deliverable/linux.git] / net / batman-adv / packet.h
CommitLineData
9f6446c7 1/* Copyright (C) 2007-2015 B.A.T.M.A.N. contributors:
c6c8fea2
SE
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
ebf38fb7 15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
c6c8fea2
SE
16 */
17
18#ifndef _NET_BATMAN_ADV_PACKET_H_
19#define _NET_BATMAN_ADV_PACKET_H_
20
1e2c2a4f
SE
21#include <asm/byteorder.h>
22#include <linux/types.h>
23
ef261577
ML
24/**
25 * enum batadv_packettype - types for batman-adv encapsulated packets
a1f1ac5c
SW
26 * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV
27 * @BATADV_BCAST: broadcast packets carrying broadcast payload
28 * @BATADV_CODED: network coded packets
29 *
30 * @BATADV_UNICAST: unicast packets carrying unicast payload traffic
31 * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original
32 * payload packet
33 * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of
34 * the sender
35 * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute
ef261577
ML
36 * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers
37 */
acd34afa 38enum batadv_packettype {
a1f1ac5c
SW
39 /* 0x00 - 0x3f: local packets or special rules for handling */
40 BATADV_IV_OGM = 0x00,
41 BATADV_BCAST = 0x01,
42 BATADV_CODED = 0x02,
43 /* 0x40 - 0x7f: unicast */
44#define BATADV_UNICAST_MIN 0x40
45 BATADV_UNICAST = 0x40,
46 BATADV_UNICAST_FRAG = 0x41,
47 BATADV_UNICAST_4ADDR = 0x42,
48 BATADV_ICMP = 0x43,
49 BATADV_UNICAST_TVLV = 0x44,
50#define BATADV_UNICAST_MAX 0x7f
51 /* 0x80 - 0xff: reserved */
7cdcf6dd
AQ
52};
53
54/**
55 * enum batadv_subtype - packet subtype for unicast4addr
56 * @BATADV_P_DATA: user payload
5c3a0e55
AQ
57 * @BATADV_P_DAT_DHT_GET: DHT request message
58 * @BATADV_P_DAT_DHT_PUT: DHT store message
59 * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
7cdcf6dd
AQ
60 */
61enum batadv_subtype {
5c3a0e55
AQ
62 BATADV_P_DATA = 0x01,
63 BATADV_P_DAT_DHT_GET = 0x02,
64 BATADV_P_DAT_DHT_PUT = 0x03,
65 BATADV_P_DAT_CACHE_REPLY = 0x04,
e8958dbf 66};
c6c8fea2
SE
67
68/* this file is included by batctl which needs these defines */
60cf7981 69#define BATADV_COMPAT_VERSION 15
e8958dbf 70
18c68d59
SW
71/**
72 * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets
73 * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was
74 * previously received from someone else than the best neighbor.
75 * @BATADV_PRIMARIES_FIRST_HOP: flag is set when the primary interface address
76 * is used, and the packet travels its first hop.
77 * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a
78 * one hop neighbor on the interface where it was originally received.
79 */
acd34afa 80enum batadv_iv_flags {
18c68d59
SW
81 BATADV_NOT_BEST_NEXT_HOP = BIT(0),
82 BATADV_PRIMARIES_FIRST_HOP = BIT(1),
83 BATADV_DIRECTLINK = BIT(2),
e8958dbf 84};
c6c8fea2
SE
85
86/* ICMP message types */
acd34afa
SE
87enum batadv_icmp_packettype {
88 BATADV_ECHO_REPLY = 0,
89 BATADV_DESTINATION_UNREACHABLE = 3,
90 BATADV_ECHO_REQUEST = 8,
91 BATADV_TTL_EXCEEDED = 11,
92 BATADV_PARAMETER_PROBLEM = 12,
e8958dbf 93};
c6c8fea2 94
ab49886e
LL
95/**
96 * enum batadv_mcast_flags - flags for multicast capabilities and settings
97 * @BATADV_MCAST_WANT_ALL_UNSNOOPABLES: we want all packets destined for
98 * 224.0.0.0/24 or ff02::1
4c8755d6
LL
99 * @BATADV_MCAST_WANT_ALL_IPV4: we want all IPv4 multicast packets
100 * @BATADV_MCAST_WANT_ALL_IPV6: we want all IPv6 multicast packets
ab49886e
LL
101 */
102enum batadv_mcast_flags {
103 BATADV_MCAST_WANT_ALL_UNSNOOPABLES = BIT(0),
4c8755d6
LL
104 BATADV_MCAST_WANT_ALL_IPV4 = BIT(1),
105 BATADV_MCAST_WANT_ALL_IPV6 = BIT(2),
ab49886e
LL
106};
107
e1bf0c14
ML
108/* tt data subtypes */
109#define BATADV_TT_DATA_TYPE_MASK 0x0F
a73105b8 110
e1bf0c14
ML
111/**
112 * enum batadv_tt_data_flags - flags for tt data tvlv
113 * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
114 * @BATADV_TT_REQUEST: TT request message
115 * @BATADV_TT_RESPONSE: TT response message
116 * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
117 */
118enum batadv_tt_data_flags {
119 BATADV_TT_OGM_DIFF = BIT(0),
120 BATADV_TT_REQUEST = BIT(1),
121 BATADV_TT_RESPONSE = BIT(2),
122 BATADV_TT_FULL_TABLE = BIT(4),
a73105b8
AQ
123};
124
43e6f65a
AQ
125/**
126 * enum batadv_tt_client_flags - TT client specific flags
127 * @BATADV_TT_CLIENT_DEL: the client has to be deleted from the table
128 * @BATADV_TT_CLIENT_ROAM: the client roamed to/from another node and the new
129 * update telling its new real location has not been received/sent yet
130 * @BATADV_TT_CLIENT_WIFI: this client is connected through a wifi interface.
131 * This information is used by the "AP Isolation" feature
132 * @BATADV_TT_CLIENT_ISOLA: this client is considered "isolated". This
133 * information is used by the Extended Isolation feature
134 * @BATADV_TT_CLIENT_NOPURGE: this client should never be removed from the table
135 * @BATADV_TT_CLIENT_NEW: this client has been added to the local table but has
136 * not been announced yet
137 * @BATADV_TT_CLIENT_PENDING: this client is marked for removal but it is kept
138 * in the table for one more originator interval for consistency purposes
139 * @BATADV_TT_CLIENT_TEMP: this global client has been detected to be part of
140 * the network but no nnode has already announced it
141 *
142 * Bits from 0 to 7 are called _remote flags_ because they are sent on the wire.
143 * Bits from 8 to 15 are called _local flags_ because they are used for local
144 * computations only.
145 *
146 * Bits from 4 to 7 - a subset of remote flags - are ensured to be in sync with
147 * the other nodes in the network. To achieve this goal these flags are included
148 * in the TT CRC computation.
9cfc7bd6 149 */
acd34afa 150enum batadv_tt_client_flags {
8de47de5
SE
151 BATADV_TT_CLIENT_DEL = BIT(0),
152 BATADV_TT_CLIENT_ROAM = BIT(1),
0eb01568 153 BATADV_TT_CLIENT_WIFI = BIT(4),
9464d071 154 BATADV_TT_CLIENT_ISOLA = BIT(5),
8de47de5
SE
155 BATADV_TT_CLIENT_NOPURGE = BIT(8),
156 BATADV_TT_CLIENT_NEW = BIT(9),
157 BATADV_TT_CLIENT_PENDING = BIT(10),
0035f97e 158 BATADV_TT_CLIENT_TEMP = BIT(11),
a73105b8
AQ
159};
160
c018ad3d
AQ
161/**
162 * batadv_vlan_flags - flags for the four MSB of any vlan ID field
163 * @BATADV_VLAN_HAS_TAG: whether the field contains a valid vlan tag or not
164 */
165enum batadv_vlan_flags {
166 BATADV_VLAN_HAS_TAG = BIT(15),
167};
168
23721387 169/* claim frame types for the bridge loop avoidance */
acd34afa 170enum batadv_bla_claimframe {
3eb8773e
SW
171 BATADV_CLAIM_TYPE_CLAIM = 0x00,
172 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
acd34afa
SE
173 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
174 BATADV_CLAIM_TYPE_REQUEST = 0x03,
23721387
SW
175};
176
414254e3
ML
177/**
178 * enum batadv_tvlv_type - tvlv type definitions
179 * @BATADV_TVLV_GW: gateway tvlv
17cf0ea4 180 * @BATADV_TVLV_DAT: distributed arp table tvlv
3f4841ff 181 * @BATADV_TVLV_NC: network coding tvlv
e1bf0c14 182 * @BATADV_TVLV_TT: translation table tvlv
122edaa0 183 * @BATADV_TVLV_ROAM: roaming advertisement tvlv
60432d75 184 * @BATADV_TVLV_MCAST: multicast capability tvlv
414254e3
ML
185 */
186enum batadv_tvlv_type {
187 BATADV_TVLV_GW = 0x01,
17cf0ea4 188 BATADV_TVLV_DAT = 0x02,
3f4841ff 189 BATADV_TVLV_NC = 0x03,
e1bf0c14 190 BATADV_TVLV_TT = 0x04,
122edaa0 191 BATADV_TVLV_ROAM = 0x05,
60432d75 192 BATADV_TVLV_MCAST = 0x06,
414254e3
ML
193};
194
2f7a3182 195#pragma pack(2)
23721387
SW
196/* the destination hardware field in the ARP frame is used to
197 * transport the claim type and the group id
198 */
96412690 199struct batadv_bla_claim_dst {
23721387
SW
200 uint8_t magic[3]; /* FF:43:05 */
201 uint8_t type; /* bla_claimframe */
3e2f1a1b 202 __be16 group; /* group id */
f6c57a46 203};
aa143d28 204
2f7a3182 205#pragma pack()
23721387 206
ef261577
ML
207/**
208 * struct batadv_ogm_packet - ogm (routing protocol) packet
a40d9b07
SW
209 * @packet_type: batman-adv packet type, part of the general header
210 * @version: batman-adv protocol version, part of the genereal header
211 * @ttl: time to live for this packet, part of the genereal header
18c68d59 212 * @flags: contains routing relevant flags - see enum batadv_iv_flags
ef261577
ML
213 * @tvlv_len: length of tvlv data following the ogm header
214 */
96412690 215struct batadv_ogm_packet {
a40d9b07
SW
216 uint8_t packet_type;
217 uint8_t version;
218 uint8_t ttl;
18c68d59 219 uint8_t flags;
e0f5211f 220 __be32 seqno;
c1faead3
AQ
221 uint8_t orig[ETH_ALEN];
222 uint8_t prev_sender[ETH_ALEN];
414254e3 223 uint8_t reserved;
3b27ffb0 224 uint8_t tq;
ef261577 225 __be16 tvlv_len;
9284a47e
SW
226 /* __packed is not needed as the struct size is divisible by 4,
227 * and the largest data type in this struct has a size of 4.
228 */
229};
c6c8fea2 230
96412690 231#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
c6c8fea2 232
0bf84c16 233/**
27a417e6 234 * batadv_icmp_header - common members among all the ICMP packets
a40d9b07
SW
235 * @packet_type: batman-adv packet type, part of the general header
236 * @version: batman-adv protocol version, part of the genereal header
237 * @ttl: time to live for this packet, part of the genereal header
0bf84c16
AQ
238 * @msg_type: ICMP packet type
239 * @dst: address of the destination node
240 * @orig: address of the source node
241 * @uid: local ICMP socket identifier
27a417e6
AQ
242 * @align: not used - useful for alignment purposes only
243 *
244 * This structure is used for ICMP packets parsing only and it is never sent
245 * over the wire. The alignment field at the end is there to ensure that
246 * members are padded the same way as they are in real packets.
0bf84c16
AQ
247 */
248struct batadv_icmp_header {
a40d9b07
SW
249 uint8_t packet_type;
250 uint8_t version;
251 uint8_t ttl;
3b27ffb0 252 uint8_t msg_type; /* see ICMP message types above */
c1faead3
AQ
253 uint8_t dst[ETH_ALEN];
254 uint8_t orig[ETH_ALEN];
c6c8fea2 255 uint8_t uid;
27a417e6 256 uint8_t align[3];
0bf84c16
AQ
257};
258
259/**
260 * batadv_icmp_packet - ICMP packet
27a417e6
AQ
261 * @packet_type: batman-adv packet type, part of the general header
262 * @version: batman-adv protocol version, part of the genereal header
263 * @ttl: time to live for this packet, part of the genereal header
264 * @msg_type: ICMP packet type
265 * @dst: address of the destination node
266 * @orig: address of the source node
267 * @uid: local ICMP socket identifier
0bf84c16
AQ
268 * @reserved: not used - useful for alignment
269 * @seqno: ICMP sequence number
270 */
271struct batadv_icmp_packet {
27a417e6
AQ
272 uint8_t packet_type;
273 uint8_t version;
274 uint8_t ttl;
275 uint8_t msg_type; /* see ICMP message types above */
276 uint8_t dst[ETH_ALEN];
277 uint8_t orig[ETH_ALEN];
278 uint8_t uid;
3b27ffb0 279 uint8_t reserved;
0bf84c16 280 __be16 seqno;
f6c57a46 281};
c6c8fea2 282
7e071c79 283#define BATADV_RR_LEN 16
c6c8fea2 284
0bf84c16
AQ
285/**
286 * batadv_icmp_packet_rr - ICMP RouteRecord packet
27a417e6
AQ
287 * @packet_type: batman-adv packet type, part of the general header
288 * @version: batman-adv protocol version, part of the genereal header
289 * @ttl: time to live for this packet, part of the genereal header
290 * @msg_type: ICMP packet type
291 * @dst: address of the destination node
292 * @orig: address of the source node
293 * @uid: local ICMP socket identifier
0bf84c16
AQ
294 * @rr_cur: number of entries the rr array
295 * @seqno: ICMP sequence number
296 * @rr: route record array
9cfc7bd6 297 */
96412690 298struct batadv_icmp_packet_rr {
27a417e6
AQ
299 uint8_t packet_type;
300 uint8_t version;
301 uint8_t ttl;
302 uint8_t msg_type; /* see ICMP message types above */
303 uint8_t dst[ETH_ALEN];
304 uint8_t orig[ETH_ALEN];
305 uint8_t uid;
c6c8fea2 306 uint8_t rr_cur;
0bf84c16 307 __be16 seqno;
7e071c79 308 uint8_t rr[BATADV_RR_LEN][ETH_ALEN];
f6c57a46 309};
c6c8fea2 310
da6b8c20
SW
311#define BATADV_ICMP_MAX_PACKET_SIZE sizeof(struct batadv_icmp_packet_rr)
312
e022b956
SE
313/* All packet headers in front of an ethernet header have to be completely
314 * divisible by 2 but not by 4 to make the payload after the ethernet
315 * header again 4 bytes boundary aligned.
316 *
317 * A packing of 2 is necessary to avoid extra padding at the end of the struct
318 * caused by a structure member which is larger than two bytes. Otherwise
319 * the structure would not fulfill the previously mentioned rule to avoid the
320 * misalignment of the payload after the ethernet header. It may also lead to
321 * leakage of information when the padding it not initialized before sending.
322 */
323#pragma pack(2)
324
a40d9b07
SW
325/**
326 * struct batadv_unicast_packet - unicast packet for network payload
327 * @packet_type: batman-adv packet type, part of the general header
328 * @version: batman-adv protocol version, part of the genereal header
329 * @ttl: time to live for this packet, part of the genereal header
330 * @ttvn: translation table version number
331 * @dest: originator destination of the unicast packet
332 */
96412690 333struct batadv_unicast_packet {
a40d9b07
SW
334 uint8_t packet_type;
335 uint8_t version;
336 uint8_t ttl;
a73105b8 337 uint8_t ttvn; /* destination translation table version number */
c1faead3 338 uint8_t dest[ETH_ALEN];
f6c57a46
SE
339 /* "4 bytes boundary + 2 bytes" long to make the payload after the
340 * following ethernet header again 4 bytes boundary aligned
341 */
342};
c6c8fea2 343
7cdcf6dd
AQ
344/**
345 * struct batadv_unicast_4addr_packet - extended unicast packet
346 * @u: common unicast packet header
347 * @src: address of the source
348 * @subtype: packet subtype
349 */
350struct batadv_unicast_4addr_packet {
351 struct batadv_unicast_packet u;
352 uint8_t src[ETH_ALEN];
353 uint8_t subtype;
354 uint8_t reserved;
355 /* "4 bytes boundary + 2 bytes" long to make the payload after the
356 * following ethernet header again 4 bytes boundary aligned
357 */
358};
359
610bfc6b
MH
360/**
361 * struct batadv_frag_packet - fragmented packet
a40d9b07
SW
362 * @packet_type: batman-adv packet type, part of the general header
363 * @version: batman-adv protocol version, part of the genereal header
364 * @ttl: time to live for this packet, part of the genereal header
610bfc6b
MH
365 * @dest: final destination used when routing fragments
366 * @orig: originator of the fragment used when merging the packet
367 * @no: fragment number within this sequence
368 * @reserved: reserved byte for alignment
369 * @seqno: sequence identification
370 * @total_size: size of the merged packet
371 */
372struct batadv_frag_packet {
a40d9b07
SW
373 uint8_t packet_type;
374 uint8_t version; /* batman version field */
375 uint8_t ttl;
610bfc6b
MH
376#if defined(__BIG_ENDIAN_BITFIELD)
377 uint8_t no:4;
378 uint8_t reserved:4;
379#elif defined(__LITTLE_ENDIAN_BITFIELD)
380 uint8_t reserved:4;
381 uint8_t no:4;
382#else
3f68785e 383#error "unknown bitfield endianness"
610bfc6b
MH
384#endif
385 uint8_t dest[ETH_ALEN];
386 uint8_t orig[ETH_ALEN];
387 __be16 seqno;
388 __be16 total_size;
389};
390
a40d9b07
SW
391/**
392 * struct batadv_bcast_packet - broadcast packet for network payload
393 * @packet_type: batman-adv packet type, part of the general header
394 * @version: batman-adv protocol version, part of the genereal header
395 * @ttl: time to live for this packet, part of the genereal header
396 * @reserved: reserved byte for alignment
397 * @seqno: sequence identification
398 * @orig: originator of the broadcast packet
399 */
96412690 400struct batadv_bcast_packet {
a40d9b07
SW
401 uint8_t packet_type;
402 uint8_t version; /* batman version field */
403 uint8_t ttl;
3b27ffb0 404 uint8_t reserved;
3e2f1a1b 405 __be32 seqno;
c1faead3 406 uint8_t orig[ETH_ALEN];
f6c57a46
SE
407 /* "4 bytes boundary + 2 bytes" long to make the payload after the
408 * following ethernet header again 4 bytes boundary aligned
409 */
e022b956
SE
410};
411
3c12de9a
MH
412/**
413 * struct batadv_coded_packet - network coded packet
a40d9b07
SW
414 * @packet_type: batman-adv packet type, part of the general header
415 * @version: batman-adv protocol version, part of the genereal header
416 * @ttl: time to live for this packet, part of the genereal header
3c12de9a
MH
417 * @reserved: Align following fields to 2-byte boundaries
418 * @first_source: original source of first included packet
419 * @first_orig_dest: original destinal of first included packet
420 * @first_crc: checksum of first included packet
421 * @first_ttvn: tt-version number of first included packet
422 * @second_ttl: ttl of second packet
423 * @second_dest: second receiver of this coded packet
424 * @second_source: original source of second included packet
425 * @second_orig_dest: original destination of second included packet
426 * @second_crc: checksum of second included packet
427 * @second_ttvn: tt version number of second included packet
428 * @coded_len: length of network coded part of the payload
429 */
430struct batadv_coded_packet {
a40d9b07
SW
431 uint8_t packet_type;
432 uint8_t version; /* batman version field */
433 uint8_t ttl;
3c12de9a
MH
434 uint8_t first_ttvn;
435 /* uint8_t first_dest[ETH_ALEN]; - saved in mac header destination */
436 uint8_t first_source[ETH_ALEN];
437 uint8_t first_orig_dest[ETH_ALEN];
438 __be32 first_crc;
439 uint8_t second_ttl;
440 uint8_t second_ttvn;
441 uint8_t second_dest[ETH_ALEN];
442 uint8_t second_source[ETH_ALEN];
443 uint8_t second_orig_dest[ETH_ALEN];
444 __be32 second_crc;
e6a0b495 445 __be16 coded_len;
3c12de9a
MH
446};
447
46b76e0b
SW
448#pragma pack()
449
ef261577
ML
450/**
451 * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
a40d9b07
SW
452 * @packet_type: batman-adv packet type, part of the general header
453 * @version: batman-adv protocol version, part of the genereal header
454 * @ttl: time to live for this packet, part of the genereal header
ef261577
ML
455 * @reserved: reserved field (for packet alignment)
456 * @src: address of the source
457 * @dst: address of the destination
458 * @tvlv_len: length of tvlv data following the unicast tvlv header
3f68785e 459 * @align: 2 bytes to align the header to a 4 byte boundary
ef261577
ML
460 */
461struct batadv_unicast_tvlv_packet {
a40d9b07
SW
462 uint8_t packet_type;
463 uint8_t version; /* batman version field */
464 uint8_t ttl;
ef261577
ML
465 uint8_t reserved;
466 uint8_t dst[ETH_ALEN];
467 uint8_t src[ETH_ALEN];
468 __be16 tvlv_len;
469 uint16_t align;
470};
471
472/**
473 * struct batadv_tvlv_hdr - base tvlv header struct
474 * @type: tvlv container type (see batadv_tvlv_type)
475 * @version: tvlv container version
476 * @len: tvlv container length
477 */
478struct batadv_tvlv_hdr {
479 uint8_t type;
480 uint8_t version;
481 __be16 len;
482};
483
414254e3
ML
484/**
485 * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
486 * container
487 * @bandwidth_down: advertised uplink download bandwidth
488 * @bandwidth_up: advertised uplink upload bandwidth
489 */
490struct batadv_tvlv_gateway_data {
491 __be32 bandwidth_down;
492 __be32 bandwidth_up;
493};
494
e1bf0c14
ML
495/**
496 * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
497 * @flags: translation table flags (see batadv_tt_data_flags)
498 * @ttvn: translation table version number
7ea7b4a1
AQ
499 * @vlan_num: number of announced VLANs. In the TVLV this struct is followed by
500 * one batadv_tvlv_tt_vlan_data object per announced vlan
e1bf0c14
ML
501 */
502struct batadv_tvlv_tt_data {
503 uint8_t flags;
504 uint8_t ttvn;
7ea7b4a1
AQ
505 __be16 num_vlan;
506};
507
508/**
509 * struct batadv_tvlv_tt_vlan_data - vlan specific tt data propagated through
510 * the tt tvlv container
511 * @crc: crc32 checksum of the entries belonging to this vlan
512 * @vid: vlan identifier
513 * @reserved: unused, useful for alignment purposes
514 */
515struct batadv_tvlv_tt_vlan_data {
516 __be32 crc;
517 __be16 vid;
ced72933 518 uint16_t reserved;
e1bf0c14
ML
519};
520
521/**
522 * struct batadv_tvlv_tt_change - translation table diff data
523 * @flags: status indicators concerning the non-mesh client (see
524 * batadv_tt_client_flags)
ca663046 525 * @reserved: reserved field - useful for alignment purposes only
e1bf0c14 526 * @addr: mac address of non-mesh client that triggered this tt change
c018ad3d 527 * @vid: VLAN identifier
e1bf0c14
ML
528 */
529struct batadv_tvlv_tt_change {
530 uint8_t flags;
ca663046 531 uint8_t reserved[3];
e1bf0c14 532 uint8_t addr[ETH_ALEN];
c018ad3d 533 __be16 vid;
e1bf0c14
ML
534};
535
122edaa0
ML
536/**
537 * struct batadv_tvlv_roam_adv - roaming advertisement
538 * @client: mac address of roaming client
c018ad3d 539 * @vid: VLAN identifier
122edaa0
ML
540 */
541struct batadv_tvlv_roam_adv {
542 uint8_t client[ETH_ALEN];
c018ad3d 543 __be16 vid;
122edaa0
ML
544};
545
60432d75
LL
546/**
547 * struct batadv_tvlv_mcast_data - payload of a multicast tvlv
548 * @flags: multicast flags announced by the orig node
549 * @reserved: reserved field
550 */
551struct batadv_tvlv_mcast_data {
552 uint8_t flags;
553 uint8_t reserved[3];
554};
555
c6c8fea2 556#endif /* _NET_BATMAN_ADV_PACKET_H_ */
This page took 0.307838 seconds and 5 git commands to generate.