diff options
author | Martin Hundebøll <martin@hundeboll.net> | 2013-05-23 18:53:03 +0400 |
---|---|---|
committer | Antonio Quartulli <antonio@meshcoding.com> | 2013-10-12 13:58:35 +0400 |
commit | ee75ed88879af88558818a5c6609d85f60ff0df4 (patch) | |
tree | eb5edeaf224c481e962f8108bca429c6b1cc31d9 /net/batman-adv/fragmentation.h | |
parent | 610bfc6bc99bc83680d190ebc69359a05fc7f605 (diff) | |
download | linux-ee75ed88879af88558818a5c6609d85f60ff0df4.tar.xz |
batman-adv: Fragment and send skbs larger than mtu
Non-broadcast packets larger than MTU are fragmented and sent with
an encapsulating header. Up to 16 fragments are supported, which are
sent in reverse order on the wire to allow minimal memory copying when
creating fragments.
Signed-off-by: Martin Hundebøll <martin@hundeboll.net>
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
Diffstat (limited to 'net/batman-adv/fragmentation.h')
-rw-r--r-- | net/batman-adv/fragmentation.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/batman-adv/fragmentation.h b/net/batman-adv/fragmentation.h index 883a6f46005e..ca029e2676e7 100644 --- a/net/batman-adv/fragmentation.h +++ b/net/batman-adv/fragmentation.h @@ -27,6 +27,9 @@ bool batadv_frag_skb_fwd(struct sk_buff *skb, struct batadv_orig_node *orig_node_src); bool batadv_frag_skb_buffer(struct sk_buff **skb, struct batadv_orig_node *orig_node); +bool batadv_frag_send_packet(struct sk_buff *skb, + struct batadv_orig_node *orig_node, + struct batadv_neigh_node *neigh_node); /** * batadv_frag_check_entry - check if a list of fragments has timed out |