Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame^] | 1 | /* Copyright (C) 2011-2012 B.A.T.M.A.N. contributors: |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 2 | * |
| 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 Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #ifndef _NET_BATMAN_ADV_BLA_H_ |
| 21 | #define _NET_BATMAN_ADV_BLA_H_ |
| 22 | |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 23 | #ifdef CONFIG_BATMAN_ADV_BLA |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 24 | int batadv_bla_rx(struct bat_priv *bat_priv, struct sk_buff *skb, short vid); |
| 25 | int batadv_bla_tx(struct bat_priv *bat_priv, struct sk_buff *skb, short vid); |
| 26 | int batadv_bla_is_backbone_gw(struct sk_buff *skb, |
| 27 | struct orig_node *orig_node, int hdr_size); |
| 28 | int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset); |
| 29 | int batadv_bla_is_backbone_gw_orig(struct bat_priv *bat_priv, uint8_t *orig); |
| 30 | int batadv_bla_check_bcast_duplist(struct bat_priv *bat_priv, |
| 31 | struct bcast_packet *bcast_packet, |
| 32 | int hdr_size); |
| 33 | void batadv_bla_update_orig_address(struct bat_priv *bat_priv, |
| 34 | struct hard_iface *primary_if, |
| 35 | struct hard_iface *oldif); |
| 36 | int batadv_bla_init(struct bat_priv *bat_priv); |
| 37 | void batadv_bla_free(struct bat_priv *bat_priv); |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 38 | |
| 39 | #define BLA_CRC_INIT 0 |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 40 | #else /* ifdef CONFIG_BATMAN_ADV_BLA */ |
| 41 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 42 | static inline int batadv_bla_rx(struct bat_priv *bat_priv, struct sk_buff *skb, |
| 43 | short vid) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 44 | { |
| 45 | return 0; |
| 46 | } |
| 47 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 48 | static inline int batadv_bla_tx(struct bat_priv *bat_priv, struct sk_buff *skb, |
| 49 | short vid) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 50 | { |
| 51 | return 0; |
| 52 | } |
| 53 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 54 | static inline int batadv_bla_is_backbone_gw(struct sk_buff *skb, |
| 55 | struct orig_node *orig_node, |
| 56 | int hdr_size) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 57 | { |
| 58 | return 0; |
| 59 | } |
| 60 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 61 | static inline int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, |
| 62 | void *offset) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 63 | { |
| 64 | return 0; |
| 65 | } |
| 66 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 67 | static inline int batadv_bla_is_backbone_gw_orig(struct bat_priv *bat_priv, |
| 68 | uint8_t *orig) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 69 | { |
| 70 | return 0; |
| 71 | } |
| 72 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 73 | static inline int |
| 74 | batadv_bla_check_bcast_duplist(struct bat_priv *bat_priv, |
| 75 | struct bcast_packet *bcast_packet, |
| 76 | int hdr_size) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 77 | { |
| 78 | return 0; |
| 79 | } |
| 80 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 81 | static inline void |
| 82 | batadv_bla_update_orig_address(struct bat_priv *bat_priv, |
| 83 | struct hard_iface *primary_if, |
| 84 | struct hard_iface *oldif) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 85 | { |
| 86 | } |
| 87 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 88 | static inline int batadv_bla_init(struct bat_priv *bat_priv) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 89 | { |
| 90 | return 1; |
| 91 | } |
| 92 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 93 | static inline void batadv_bla_free(struct bat_priv *bat_priv) |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 94 | { |
| 95 | } |
| 96 | |
| 97 | #endif /* ifdef CONFIG_BATMAN_ADV_BLA */ |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 98 | |
| 99 | #endif /* ifndef _NET_BATMAN_ADV_BLA_H_ */ |