blob: 3f0dfa2f6d7c609eb744e911d11f04d7665fe8f5 [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
David S. Miller04c9f412012-07-10 23:56:33 -070024int batadv_bla_rx(struct batadv_priv *bat_priv, struct sk_buff *skb, short vid,
25 bool is_bcast);
Sven Eckelmann56303d32012-06-05 22:31:31 +020026int batadv_bla_tx(struct batadv_priv *bat_priv, struct sk_buff *skb, short vid);
Sven Eckelmann08adf152012-05-12 13:38:47 +020027int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020028 struct batadv_orig_node *orig_node, int hdr_size);
Sven Eckelmann08adf152012-05-12 13:38:47 +020029int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset);
Sven Eckelmann56303d32012-06-05 22:31:31 +020030int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv, uint8_t *orig);
31int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +020032 struct batadv_bcast_packet *bcast_packet,
Sven Eckelmann08adf152012-05-12 13:38:47 +020033 int hdr_size);
Sven Eckelmann56303d32012-06-05 22:31:31 +020034void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
35 struct batadv_hard_iface *primary_if,
36 struct batadv_hard_iface *oldif);
37int batadv_bla_init(struct batadv_priv *bat_priv);
38void batadv_bla_free(struct batadv_priv *bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +010039
Sven Eckelmann3964f722012-06-03 22:19:10 +020040#define BATADV_BLA_CRC_INIT 0
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010041#else /* ifdef CONFIG_BATMAN_ADV_BLA */
42
Sven Eckelmann56303d32012-06-05 22:31:31 +020043static inline int batadv_bla_rx(struct batadv_priv *bat_priv,
Antonio Quartullic7043722012-08-22 00:42:40 +020044 struct sk_buff *skb, short vid, bool is_bcast)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010045{
46 return 0;
47}
48
Sven Eckelmann56303d32012-06-05 22:31:31 +020049static inline int batadv_bla_tx(struct batadv_priv *bat_priv,
50 struct sk_buff *skb, short vid)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010051{
52 return 0;
53}
54
Sven Eckelmann08adf152012-05-12 13:38:47 +020055static inline int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020056 struct batadv_orig_node *orig_node,
Sven Eckelmann08adf152012-05-12 13:38:47 +020057 int hdr_size)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010058{
59 return 0;
60}
61
Sven Eckelmann08adf152012-05-12 13:38:47 +020062static inline int batadv_bla_claim_table_seq_print_text(struct seq_file *seq,
63 void *offset)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010064{
65 return 0;
66}
67
Sven Eckelmann56303d32012-06-05 22:31:31 +020068static inline int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv,
Sven Eckelmann08adf152012-05-12 13:38:47 +020069 uint8_t *orig)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010070{
71 return 0;
72}
73
Sven Eckelmann08adf152012-05-12 13:38:47 +020074static inline int
Sven Eckelmann56303d32012-06-05 22:31:31 +020075batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +020076 struct batadv_bcast_packet *bcast_packet,
Sven Eckelmann08adf152012-05-12 13:38:47 +020077 int hdr_size)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010078{
79 return 0;
80}
81
Sven Eckelmann08adf152012-05-12 13:38:47 +020082static inline void
Sven Eckelmann56303d32012-06-05 22:31:31 +020083batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
84 struct batadv_hard_iface *primary_if,
85 struct batadv_hard_iface *oldif)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010086{
87}
88
Sven Eckelmann56303d32012-06-05 22:31:31 +020089static inline int batadv_bla_init(struct batadv_priv *bat_priv)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010090{
91 return 1;
92}
93
Sven Eckelmann56303d32012-06-05 22:31:31 +020094static inline void batadv_bla_free(struct batadv_priv *bat_priv)
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010095{
96}
97
98#endif /* ifdef CONFIG_BATMAN_ADV_BLA */
Simon Wunderlich23721382012-01-22 20:00:19 +010099
100#endif /* ifndef _NET_BATMAN_ADV_BLA_H_ */