aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/unicast.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/batman-adv/unicast.h')
-rw-r--r--net/batman-adv/unicast.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/net/batman-adv/unicast.h b/net/batman-adv/unicast.h
index a9faf6b1db19..657fe7392b14 100644
--- a/net/batman-adv/unicast.h
+++ b/net/batman-adv/unicast.h
@@ -27,12 +27,13 @@
27#define FRAG_TIMEOUT 10000 /* purge frag list entries after time in ms */ 27#define FRAG_TIMEOUT 10000 /* purge frag list entries after time in ms */
28#define FRAG_BUFFER_SIZE 6 /* number of list elements in buffer */ 28#define FRAG_BUFFER_SIZE 6 /* number of list elements in buffer */
29 29
30int frag_reassemble_skb(struct sk_buff *skb, struct bat_priv *bat_priv, 30int batadv_frag_reassemble_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
31 struct sk_buff **new_skb); 31 struct sk_buff **new_skb);
32void frag_list_free(struct list_head *head); 32void batadv_frag_list_free(struct list_head *head);
33int unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv); 33int batadv_unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv);
34int frag_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv, 34int batadv_frag_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
35 struct hard_iface *hard_iface, const uint8_t dstaddr[]); 35 struct hard_iface *hard_iface,
36 const uint8_t dstaddr[]);
36 37
37static inline int frag_can_reassemble(const struct sk_buff *skb, int mtu) 38static inline int frag_can_reassemble(const struct sk_buff *skb, int mtu)
38{ 39{