blob: 08d13cb1e3df41040a8034384b3c995f29da15cc [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2011-2012 B.A.T.M.A.N. contributors:
Simon Wunderlich23721382012-01-22 20:00:19 +01002 *
3 * 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
Simon Wunderlich23721382012-01-22 20:00:19 +010018 */
19
20#ifndef _NET_BATMAN_ADV_BLA_H_
21#define _NET_BATMAN_ADV_BLA_H_
22
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010023#ifdef CONFIG_BATMAN_ADV_BLA
Sven Eckelmann56303d32012-06-05 22:31:31 +020024int batadv_bla_rx(struct batadv_priv *bat_priv, struct sk_buff *skb, short vid);
25int batadv_bla_tx(struct batadv_priv *bat_priv, struct sk_buff *skb, short vid);
Sven Eckelmann08adf152012-05-12 13:38:47 +020026int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020027 struct batadv_orig_node *orig_node, int hdr_size);
Sven Eckelmann08adf152012-05-12 13:38:47 +020028int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset);
Sven Eckelmann56303d32012-06-05 22:31:31 +020029int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv, uint8_t *orig);
30int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +020031 struct batadv_bcast_packet *bcast_packet,
Sven Eckelmann08adf152012-05-12 13:38:47 +020032 int hdr_size);
Sven Eckelmann56303d32012-06-05 22:31:31 +020033void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
34 struct batadv_hard_iface *primary_if,
35 struct batadv_hard_iface *oldif);
36int batadv_bla_init(struct batadv_priv *bat_priv);
37void batadv_bla_free(struct batadv_priv *bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +010038
Sven Eckelmann3964f722012-06-03 22:19:10 +020039#define BATADV_BLA_CRC_INIT 0
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010040#else /* ifdef CONFIG_BATMAN_ADV_BLA */
41
Sven Eckelmann56303d32012-06-05 22:31:31 +020042static inline int batadv_bla_rx(struct batadv_priv *bat_priv,
43 struct sk_buff *skb, short vid)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010044{
45 return 0;
46}
47
Sven Eckelmann56303d32012-06-05 22:31:31 +020048static inline int batadv_bla_tx(struct batadv_priv *bat_priv,
49 struct sk_buff *skb, short vid)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010050{
51 return 0;
52}
53
Sven Eckelmann08adf152012-05-12 13:38:47 +020054static inline int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020055 struct batadv_orig_node *orig_node,
Sven Eckelmann08adf152012-05-12 13:38:47 +020056 int hdr_size)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010057{
58 return 0;
59}
60
Sven Eckelmann08adf152012-05-12 13:38:47 +020061static inline int batadv_bla_claim_table_seq_print_text(struct seq_file *seq,
62 void *offset)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010063{
64 return 0;
65}
66
Sven Eckelmann56303d32012-06-05 22:31:31 +020067static inline int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv,
Sven Eckelmann08adf152012-05-12 13:38:47 +020068 uint8_t *orig)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010069{
70 return 0;
71}
72
Sven Eckelmann08adf152012-05-12 13:38:47 +020073static inline int
Sven Eckelmann56303d32012-06-05 22:31:31 +020074batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +020075 struct batadv_bcast_packet *bcast_packet,
Sven Eckelmann08adf152012-05-12 13:38:47 +020076 int hdr_size)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010077{
78 return 0;
79}
80
Sven Eckelmann08adf152012-05-12 13:38:47 +020081static inline void
Sven Eckelmann56303d32012-06-05 22:31:31 +020082batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
83 struct batadv_hard_iface *primary_if,
84 struct batadv_hard_iface *oldif)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010085{
86}
87
Sven Eckelmann56303d32012-06-05 22:31:31 +020088static inline int batadv_bla_init(struct batadv_priv *bat_priv)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010089{
90 return 1;
91}
92
Sven Eckelmann56303d32012-06-05 22:31:31 +020093static inline void batadv_bla_free(struct batadv_priv *bat_priv)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010094{
95}
96
97#endif /* ifdef CONFIG_BATMAN_ADV_BLA */
Simon Wunderlich23721382012-01-22 20:00:19 +010098
99#endif /* ifndef _NET_BATMAN_ADV_BLA_H_ */