2017-11-19 15:05:11 +01:00
/* SPDX-License-Identifier: GPL-2.0 */
2018-01-01 00:00:00 +01:00
/* Copyright (C) 2014-2018 B.A.T.M.A.N. contributors:
2014-02-15 17:47:49 +01:00
*
* Linus Lüssing
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation .
*
* This program is distributed in the hope that it will be useful , but
* WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
*/
# ifndef _NET_BATMAN_ADV_MULTICAST_H_
# define _NET_BATMAN_ADV_MULTICAST_H_
2015-04-17 19:40:28 +02:00
# include "main.h"
2018-03-13 11:41:13 +01:00
struct netlink_callback ;
2016-05-10 18:41:27 +02:00
struct seq_file ;
2015-04-17 19:40:28 +02:00
struct sk_buff ;
2014-02-15 17:47:52 +01:00
/**
2015-09-06 21:38:49 +02:00
* enum batadv_forw_mode - the way a packet should be forwarded as
2014-02-15 17:47:52 +01:00
*/
enum batadv_forw_mode {
2017-12-02 19:51:48 +01:00
/**
* @ BATADV_FORW_ALL : forward the packet to all nodes ( currently via
* classic flooding )
*/
2014-02-15 17:47:52 +01:00
BATADV_FORW_ALL ,
2017-12-02 19:51:48 +01:00
/**
* @ BATADV_FORW_SINGLE : forward the packet to a single node ( currently
* via the BATMAN unicast routing protocol )
*/
2014-02-15 17:47:52 +01:00
BATADV_FORW_SINGLE ,
2017-12-02 19:51:48 +01:00
/** @BATADV_FORW_NONE: don't forward, drop it */
2014-02-15 17:47:52 +01:00
BATADV_FORW_NONE ,
} ;
2014-02-15 17:47:49 +01:00
# ifdef CONFIG_BATMAN_ADV_MCAST
2014-02-15 17:47:52 +01:00
enum batadv_forw_mode
batadv_mcast_forw_mode ( struct batadv_priv * bat_priv , struct sk_buff * skb ,
struct batadv_orig_node * * mcast_single_orig ) ;
2014-02-15 17:47:51 +01:00
void batadv_mcast_init ( struct batadv_priv * bat_priv ) ;
2016-05-10 18:41:27 +02:00
int batadv_mcast_flags_seq_print_text ( struct seq_file * seq , void * offset ) ;
2018-03-13 11:41:13 +01:00
int batadv_mcast_mesh_info_put ( struct sk_buff * msg ,
struct batadv_priv * bat_priv ) ;
int batadv_mcast_flags_dump ( struct sk_buff * msg , struct netlink_callback * cb ) ;
2014-02-15 17:47:49 +01:00
void batadv_mcast_free ( struct batadv_priv * bat_priv ) ;
2014-02-15 17:47:51 +01:00
void batadv_mcast_purge_orig ( struct batadv_orig_node * orig_node ) ;
2014-02-15 17:47:49 +01:00
# else
2014-02-15 17:47:52 +01:00
static inline enum batadv_forw_mode
batadv_mcast_forw_mode ( struct batadv_priv * bat_priv , struct sk_buff * skb ,
struct batadv_orig_node * * mcast_single_orig )
{
return BATADV_FORW_ALL ;
}
2014-02-15 17:47:51 +01:00
static inline int batadv_mcast_init ( struct batadv_priv * bat_priv )
{
return 0 ;
}
2018-03-13 11:41:13 +01:00
static inline int
batadv_mcast_mesh_info_put ( struct sk_buff * msg , struct batadv_priv * bat_priv )
{
return 0 ;
}
static inline int batadv_mcast_flags_dump ( struct sk_buff * msg ,
struct netlink_callback * cb )
{
return - EOPNOTSUPP ;
}
2014-02-15 17:47:49 +01:00
static inline void batadv_mcast_free ( struct batadv_priv * bat_priv )
{
}
2014-02-15 17:47:51 +01:00
static inline void batadv_mcast_purge_orig ( struct batadv_orig_node * orig_node )
{
}
2014-02-15 17:47:49 +01:00
# endif /* CONFIG_BATMAN_ADV_MCAST */
# endif /* _NET_BATMAN_ADV_MULTICAST_H_ */