diff options
author | Marek Lindner <lindner_marek@yahoo.de> | 2013-04-23 09:39:59 -0400 |
---|---|---|
committer | Antonio Quartulli <antonio@meshcoding.com> | 2013-10-09 15:22:27 -0400 |
commit | 17cf0ea455f1a4a7e8436ef96236999e9c452a93 (patch) | |
tree | 86b0a10dc27b3c32f27c13f15bc3e43291cacca9 /net/batman-adv/distributed-arp-table.h | |
parent | 414254e342a0d58144de40c3da777521ebaeeb07 (diff) |
batman-adv: tvlv - add distributed arp table container
Create DAT container to announce DAT capabilities (if enabled).
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
Diffstat (limited to 'net/batman-adv/distributed-arp-table.h')
-rw-r--r-- | net/batman-adv/distributed-arp-table.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/batman-adv/distributed-arp-table.h b/net/batman-adv/distributed-arp-table.h index 125c8c6fcfad..60d853beb8d8 100644 --- a/net/batman-adv/distributed-arp-table.h +++ b/net/batman-adv/distributed-arp-table.h | |||
@@ -29,6 +29,7 @@ | |||
29 | 29 | ||
30 | #define BATADV_DAT_ADDR_MAX ((batadv_dat_addr_t)~(batadv_dat_addr_t)0) | 30 | #define BATADV_DAT_ADDR_MAX ((batadv_dat_addr_t)~(batadv_dat_addr_t)0) |
31 | 31 | ||
32 | void batadv_dat_status_update(struct net_device *net_dev); | ||
32 | bool batadv_dat_snoop_outgoing_arp_request(struct batadv_priv *bat_priv, | 33 | bool batadv_dat_snoop_outgoing_arp_request(struct batadv_priv *bat_priv, |
33 | struct sk_buff *skb); | 34 | struct sk_buff *skb); |
34 | bool batadv_dat_snoop_incoming_arp_request(struct batadv_priv *bat_priv, | 35 | bool batadv_dat_snoop_incoming_arp_request(struct batadv_priv *bat_priv, |
@@ -98,6 +99,10 @@ static inline void batadv_dat_inc_counter(struct batadv_priv *bat_priv, | |||
98 | 99 | ||
99 | #else | 100 | #else |
100 | 101 | ||
102 | static inline void batadv_dat_status_update(struct net_device *net_dev) | ||
103 | { | ||
104 | } | ||
105 | |||
101 | static inline bool | 106 | static inline bool |
102 | batadv_dat_snoop_outgoing_arp_request(struct batadv_priv *bat_priv, | 107 | batadv_dat_snoop_outgoing_arp_request(struct batadv_priv *bat_priv, |
103 | struct sk_buff *skb) | 108 | struct sk_buff *skb) |