Sven Eckelmann | 0046b04 | 2016-01-01 00:01:03 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2014-2016 B.A.T.M.A.N. contributors: |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 2 | * |
| 3 | * Linus Lüssing |
| 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, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
| 18 | #ifndef _NET_BATMAN_ADV_MULTICAST_H_ |
| 19 | #define _NET_BATMAN_ADV_MULTICAST_H_ |
| 20 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 21 | #include "main.h" |
| 22 | |
Linus Lüssing | 4e3e823 | 2016-05-10 18:41:27 +0200 | [diff] [blame] | 23 | struct seq_file; |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 24 | struct sk_buff; |
| 25 | |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 26 | /** |
Sven Eckelmann | 6f68b00 | 2015-09-06 21:38:49 +0200 | [diff] [blame] | 27 | * enum batadv_forw_mode - the way a packet should be forwarded as |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 28 | * @BATADV_FORW_ALL: forward the packet to all nodes (currently via classic |
| 29 | * flooding) |
| 30 | * @BATADV_FORW_SINGLE: forward the packet to a single node (currently via the |
| 31 | * BATMAN unicast routing protocol) |
| 32 | * @BATADV_FORW_NONE: don't forward, drop it |
| 33 | */ |
| 34 | enum batadv_forw_mode { |
| 35 | BATADV_FORW_ALL, |
| 36 | BATADV_FORW_SINGLE, |
| 37 | BATADV_FORW_NONE, |
| 38 | }; |
| 39 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 40 | #ifdef CONFIG_BATMAN_ADV_MCAST |
| 41 | |
| 42 | void batadv_mcast_mla_update(struct batadv_priv *bat_priv); |
| 43 | |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 44 | enum batadv_forw_mode |
| 45 | batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb, |
| 46 | struct batadv_orig_node **mcast_single_orig); |
| 47 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 48 | void batadv_mcast_init(struct batadv_priv *bat_priv); |
| 49 | |
Linus Lüssing | 4e3e823 | 2016-05-10 18:41:27 +0200 | [diff] [blame] | 50 | int batadv_mcast_flags_seq_print_text(struct seq_file *seq, void *offset); |
| 51 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 52 | void batadv_mcast_free(struct batadv_priv *bat_priv); |
| 53 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 54 | void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node); |
| 55 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 56 | #else |
| 57 | |
| 58 | static inline void batadv_mcast_mla_update(struct batadv_priv *bat_priv) |
| 59 | { |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 60 | } |
| 61 | |
Linus Lüssing | 1d8ab8d | 2014-02-15 17:47:52 +0100 | [diff] [blame] | 62 | static inline enum batadv_forw_mode |
| 63 | batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb, |
| 64 | struct batadv_orig_node **mcast_single_orig) |
| 65 | { |
| 66 | return BATADV_FORW_ALL; |
| 67 | } |
| 68 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 69 | static inline int batadv_mcast_init(struct batadv_priv *bat_priv) |
| 70 | { |
| 71 | return 0; |
| 72 | } |
| 73 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 74 | static inline void batadv_mcast_free(struct batadv_priv *bat_priv) |
| 75 | { |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 76 | } |
| 77 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 78 | static inline void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node) |
| 79 | { |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 80 | } |
| 81 | |
Linus Lüssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 82 | #endif /* CONFIG_BATMAN_ADV_MCAST */ |
| 83 | |
| 84 | #endif /* _NET_BATMAN_ADV_MULTICAST_H_ */ |