This source file includes following definitions.
- arp_hdr
- arp_hdr_len
- dev_is_mac_header_xmit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #ifndef _LINUX_IF_ARP_H
20 #define _LINUX_IF_ARP_H
21
22 #include <linux/skbuff.h>
23 #include <uapi/linux/if_arp.h>
24
25 static inline struct arphdr *arp_hdr(const struct sk_buff *skb)
26 {
27 return (struct arphdr *)skb_network_header(skb);
28 }
29
30 static inline unsigned int arp_hdr_len(const struct net_device *dev)
31 {
32 switch (dev->type) {
33 #if IS_ENABLED(CONFIG_FIREWIRE_NET)
34 case ARPHRD_IEEE1394:
35
36 return sizeof(struct arphdr) + dev->addr_len + sizeof(u32) * 2;
37 #endif
38 default:
39
40 return sizeof(struct arphdr) + (dev->addr_len + sizeof(u32)) * 2;
41 }
42 }
43
44 static inline bool dev_is_mac_header_xmit(const struct net_device *dev)
45 {
46 switch (dev->type) {
47 case ARPHRD_TUNNEL:
48 case ARPHRD_TUNNEL6:
49 case ARPHRD_SIT:
50 case ARPHRD_IPGRE:
51 case ARPHRD_VOID:
52 case ARPHRD_NONE:
53 case ARPHRD_RAWIP:
54 return false;
55 default:
56 return true;
57 }
58 }
59
60 #endif