2016-01-01 02:01:03 +03:00
/* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors:
2010-12-13 14:19:28 +03:00
*
* Marek Lindner
*
* 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
2013-11-03 23:40:48 +04:00
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
2010-12-13 14:19:28 +03:00
*/
# ifndef _NET_BATMAN_ADV_SOFT_INTERFACE_H_
# define _NET_BATMAN_ADV_SOFT_INTERFACE_H_
2015-04-17 20:40:28 +03:00
# include "main.h"
# include <net/rtnetlink.h>
struct net_device ;
struct sk_buff ;
2012-05-12 04:09:38 +04:00
int batadv_skb_head_push ( struct sk_buff * skb , unsigned int len ) ;
2012-07-06 01:38:30 +04:00
void batadv_interface_rx ( struct net_device * soft_iface ,
struct sk_buff * skb , struct batadv_hard_iface * recv_if ,
int hdr_size , struct batadv_orig_node * orig_node ) ;
2012-05-12 04:09:38 +04:00
struct net_device * batadv_softif_create ( const char * name ) ;
2013-02-11 13:10:25 +04:00
void batadv_softif_destroy_sysfs ( struct net_device * soft_iface ) ;
2012-05-12 04:09:38 +04:00
int batadv_softif_is_valid ( const struct net_device * net_dev ) ;
2013-02-11 13:10:26 +04:00
extern struct rtnl_link_ops batadv_link_ops ;
2013-07-02 13:04:34 +04:00
int batadv_softif_create_vlan ( struct batadv_priv * bat_priv , unsigned short vid ) ;
2016-01-17 13:01:21 +03:00
void batadv_softif_vlan_put ( struct batadv_softif_vlan * softif_vlan ) ;
2013-07-02 13:04:35 +04:00
struct batadv_softif_vlan * batadv_softif_vlan_get ( struct batadv_priv * bat_priv ,
unsigned short vid ) ;
2010-12-13 14:19:28 +03:00
# endif /* _NET_BATMAN_ADV_SOFT_INTERFACE_H_ */