blob: c030cb72ff45781e0b5e364d9d8af38449cba774 [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2007-2013 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner, Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#ifndef _NET_BATMAN_ADV_SEND_H_
21#define _NET_BATMAN_ADV_SEND_H_
22
Sven Eckelmann56303d32012-06-05 22:31:31 +020023int batadv_send_skb_packet(struct sk_buff *skb,
24 struct batadv_hard_iface *hard_iface,
Sven Eckelmann9455e342012-05-12 02:09:37 +020025 const uint8_t *dst_addr);
Martin Hundebølle91ecfc2013-04-20 13:54:39 +020026int batadv_send_skb_to_orig(struct sk_buff *skb,
27 struct batadv_orig_node *orig_node,
28 struct batadv_hard_iface *recv_if);
Sven Eckelmann56303d32012-06-05 22:31:31 +020029void batadv_schedule_bat_ogm(struct batadv_hard_iface *hard_iface);
30int batadv_add_bcast_packet_to_list(struct batadv_priv *bat_priv,
Sven Eckelmann9455e342012-05-12 02:09:37 +020031 const struct sk_buff *skb,
32 unsigned long delay);
33void batadv_send_outstanding_bat_ogm_packet(struct work_struct *work);
Sven Eckelmann56303d32012-06-05 22:31:31 +020034void
35batadv_purge_outstanding_packets(struct batadv_priv *bat_priv,
36 const struct batadv_hard_iface *hard_iface);
Martin Hundebøllf097e252013-05-23 16:53:01 +020037bool batadv_send_skb_prepare_unicast_4addr(struct batadv_priv *bat_priv,
38 struct sk_buff *skb,
39 struct batadv_orig_node *orig_node,
40 int packet_subtype);
41int batadv_send_skb_generic_unicast(struct batadv_priv *bat_priv,
42 struct sk_buff *skb, int packet_type,
Antonio Quartullic018ad32013-06-04 12:11:39 +020043 int packet_subtype,
44 unsigned short vid);
Martin Hundebøllf097e252013-05-23 16:53:01 +020045
46/**
47 * batadv_send_unicast_skb - send the skb encapsulated in a unicast packet
48 * @bat_priv: the bat priv with all the soft interface information
49 * @skb: the payload to send
Antonio Quartullic018ad32013-06-04 12:11:39 +020050 * @vid: the vid to be used to search the translation table
Martin Hundebøllf097e252013-05-23 16:53:01 +020051 *
52 * Returns 1 in case of error or 0 otherwise.
53 */
54static inline int batadv_send_skb_unicast(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +020055 struct sk_buff *skb,
56 unsigned short vid)
Martin Hundebøllf097e252013-05-23 16:53:01 +020057{
58 return batadv_send_skb_generic_unicast(bat_priv, skb, BATADV_UNICAST,
Antonio Quartullic018ad32013-06-04 12:11:39 +020059 0, vid);
Martin Hundebøllf097e252013-05-23 16:53:01 +020060}
61
62/**
63 * batadv_send_4addr_unicast_skb - send the skb encapsulated in a unicast 4addr
64 * packet
65 * @bat_priv: the bat priv with all the soft interface information
66 * @skb: the payload to send
67 * @packet_subtype: the unicast 4addr packet subtype to use
Antonio Quartullic018ad32013-06-04 12:11:39 +020068 * @vid: the vid to be used to search the translation table
Martin Hundebøllf097e252013-05-23 16:53:01 +020069 *
70 * Returns 1 in case of error or 0 otherwise.
71 */
72static inline int batadv_send_skb_unicast_4addr(struct batadv_priv *bat_priv,
73 struct sk_buff *skb,
Antonio Quartullic018ad32013-06-04 12:11:39 +020074 int packet_subtype,
75 unsigned short vid)
Martin Hundebøllf097e252013-05-23 16:53:01 +020076{
77 return batadv_send_skb_generic_unicast(bat_priv, skb,
78 BATADV_UNICAST_4ADDR,
Antonio Quartullic018ad32013-06-04 12:11:39 +020079 packet_subtype, vid);
Martin Hundebøllf097e252013-05-23 16:53:01 +020080}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000081
82#endif /* _NET_BATMAN_ADV_SEND_H_ */