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