1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef _LINUX_IF_FC_H
8 #define _LINUX_IF_FC_H
9 #include <linux/types.h>
10 #define FC_ALEN 6
11 #define FC_HLEN (sizeof(struct fch_hdr) + sizeof(struct fcllc))
12 #define FC_ID_LEN 3
13 #define EXTENDED_SAP 0xAA
14 #define UI_CMD 0x03
15 struct fch_hdr {
16   __u8 daddr[FC_ALEN];
17   __u8 saddr[FC_ALEN];
18 };
19 struct fcllc {
20   __u8 dsap;
21   __u8 ssap;
22   __u8 llc;
23   __u8 protid[3];
24   __be16 ethertype;
25 };
26 #endif
27