blob: 80bceec55592a7e7347bc09140b177a88bdccf2b [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2014-2016 B.A.T.M.A.N. contributors:
Linus Lüssingc5caf4e2014-02-15 17:47:49 +01002 *
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 Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include "main.h"
22
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020023struct sk_buff;
24
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010025/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +020026 * enum batadv_forw_mode - the way a packet should be forwarded as
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010027 * @BATADV_FORW_ALL: forward the packet to all nodes (currently via classic
28 * flooding)
29 * @BATADV_FORW_SINGLE: forward the packet to a single node (currently via the
30 * BATMAN unicast routing protocol)
31 * @BATADV_FORW_NONE: don't forward, drop it
32 */
33enum batadv_forw_mode {
34 BATADV_FORW_ALL,
35 BATADV_FORW_SINGLE,
36 BATADV_FORW_NONE,
37};
38
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010039#ifdef CONFIG_BATMAN_ADV_MCAST
40
41void batadv_mcast_mla_update(struct batadv_priv *bat_priv);
42
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010043enum batadv_forw_mode
44batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
45 struct batadv_orig_node **mcast_single_orig);
46
Linus Lüssing60432d72014-02-15 17:47:51 +010047void batadv_mcast_init(struct batadv_priv *bat_priv);
48
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010049void batadv_mcast_free(struct batadv_priv *bat_priv);
50
Linus Lüssing60432d72014-02-15 17:47:51 +010051void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node);
52
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010053#else
54
55static inline void batadv_mcast_mla_update(struct batadv_priv *bat_priv)
56{
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010057}
58
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010059static inline enum batadv_forw_mode
60batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
61 struct batadv_orig_node **mcast_single_orig)
62{
63 return BATADV_FORW_ALL;
64}
65
Linus Lüssing60432d72014-02-15 17:47:51 +010066static inline int batadv_mcast_init(struct batadv_priv *bat_priv)
67{
68 return 0;
69}
70
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010071static inline void batadv_mcast_free(struct batadv_priv *bat_priv)
72{
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010073}
74
Linus Lüssing60432d72014-02-15 17:47:51 +010075static inline void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node)
76{
Linus Lüssing60432d72014-02-15 17:47:51 +010077}
78
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010079#endif /* CONFIG_BATMAN_ADV_MCAST */
80
81#endif /* _NET_BATMAN_ADV_MULTICAST_H_ */