blob: beb6e56c624af0c583e30d96c996e200625fa4e9 [file] [log] [blame]
Sven Eckelmann9f6446c2015-04-23 13:16:35 +02001/* Copyright (C) 2014-2015 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
23struct batadv_orig_node;
24struct batadv_priv;
25struct sk_buff;
26
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010027/**
28 * batadv_forw_mode - the way a packet should be forwarded as
29 * @BATADV_FORW_ALL: forward the packet to all nodes (currently via classic
30 * flooding)
31 * @BATADV_FORW_SINGLE: forward the packet to a single node (currently via the
32 * BATMAN unicast routing protocol)
33 * @BATADV_FORW_NONE: don't forward, drop it
34 */
35enum batadv_forw_mode {
36 BATADV_FORW_ALL,
37 BATADV_FORW_SINGLE,
38 BATADV_FORW_NONE,
39};
40
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010041#ifdef CONFIG_BATMAN_ADV_MCAST
42
43void batadv_mcast_mla_update(struct batadv_priv *bat_priv);
44
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010045enum batadv_forw_mode
46batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
47 struct batadv_orig_node **mcast_single_orig);
48
Linus Lüssing60432d72014-02-15 17:47:51 +010049void batadv_mcast_init(struct batadv_priv *bat_priv);
50
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010051void batadv_mcast_free(struct batadv_priv *bat_priv);
52
Linus Lüssing60432d72014-02-15 17:47:51 +010053void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node);
54
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010055#else
56
57static inline void batadv_mcast_mla_update(struct batadv_priv *bat_priv)
58{
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010059}
60
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +010061static inline enum batadv_forw_mode
62batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
63 struct batadv_orig_node **mcast_single_orig)
64{
65 return BATADV_FORW_ALL;
66}
67
Linus Lüssing60432d72014-02-15 17:47:51 +010068static inline int batadv_mcast_init(struct batadv_priv *bat_priv)
69{
70 return 0;
71}
72
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010073static inline void batadv_mcast_free(struct batadv_priv *bat_priv)
74{
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010075}
76
Linus Lüssing60432d72014-02-15 17:47:51 +010077static inline void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node)
78{
Linus Lüssing60432d72014-02-15 17:47:51 +010079}
80
Linus Lüssingc5caf4e2014-02-15 17:47:49 +010081#endif /* CONFIG_BATMAN_ADV_MCAST */
82
83#endif /* _NET_BATMAN_ADV_MULTICAST_H_ */