2013-01-04 06:05:31 +04:00
/* Copyright (C) 2007-2013 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
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 51 Franklin Street , Fifth Floor , Boston , MA
* 02110 - 1301 , USA
*/
# ifndef _NET_BATMAN_ADV_SOFT_INTERFACE_H_
# define _NET_BATMAN_ADV_SOFT_INTERFACE_H_
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 ) ;
2013-07-02 13:04:35 +04:00
void batadv_softif_vlan_free_ref ( struct batadv_softif_vlan * softif_vlan ) ;
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_ */