diff options
| author | Mark Stapp <mjs@voltanet.io> | 2021-05-05 07:57:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-05 07:57:04 -0400 |
| commit | 3d4b999fab50a4f08d2c4257ec059218a90ed29f (patch) | |
| tree | 135eea80ddb75fb83ff291f43b7f1a87572cf5d6 /include/linux/if_packet.h | |
| parent | 48c20391997a9809c710d4669a05f9eee8b5bff8 (diff) | |
| parent | dee1c6c3384ca9f22f2920263640f4c4dc9eb67c (diff) | |
Merge pull request #8237 from pguibert6WIND/nhrp_use_zebra_2
Nhrp use zebra 2
Diffstat (limited to 'include/linux/if_packet.h')
| -rw-r--r-- | include/linux/if_packet.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/if_packet.h b/include/linux/if_packet.h new file mode 100644 index 0000000000..057edb33dc --- /dev/null +++ b/include/linux/if_packet.h @@ -0,0 +1,16 @@ +#ifndef __LINUX_IF_PACKET_H +#define __LINUX_IF_PACKET_H + +#include <linux/types.h> + +struct sockaddr_ll { + unsigned short sll_family; + __be16 sll_protocol; + int sll_ifindex; + unsigned short sll_hatype; + unsigned char sll_pkttype; + unsigned char sll_halen; + unsigned char sll_addr[8]; +}; + +#endif |
