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