2017-11-19 09:05:11 -05:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2018-12-31 17:59:59 -05:00
|
|
|
/* Copyright (C) 2007-2019 B.A.T.M.A.N. contributors:
|
2010-12-13 06:19:28 -05:00
|
|
|
*
|
|
|
|
* Marek Lindner
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_BATMAN_ADV_SOFT_INTERFACE_H_
|
|
|
|
#define _NET_BATMAN_ADV_SOFT_INTERFACE_H_
|
|
|
|
|
2015-04-17 13:40:28 -04:00
|
|
|
#include "main.h"
|
|
|
|
|
2019-05-24 14:11:17 -04:00
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/skbuff.h>
|
2016-02-22 15:02:39 -05:00
|
|
|
#include <linux/types.h>
|
2019-05-24 14:11:17 -04:00
|
|
|
#include <net/net_namespace.h>
|
2015-04-17 13:40:28 -04:00
|
|
|
#include <net/rtnetlink.h>
|
|
|
|
|
2012-05-11 20:09:38 -04:00
|
|
|
int batadv_skb_head_push(struct sk_buff *skb, unsigned int len);
|
2012-07-05 17:38:30 -04:00
|
|
|
void batadv_interface_rx(struct net_device *soft_iface,
|
2016-02-28 05:38:51 -05:00
|
|
|
struct sk_buff *skb, int hdr_size,
|
|
|
|
struct batadv_orig_node *orig_node);
|
2016-04-21 06:57:27 -04:00
|
|
|
struct net_device *batadv_softif_create(struct net *net, const char *name);
|
2013-02-11 04:10:25 -05:00
|
|
|
void batadv_softif_destroy_sysfs(struct net_device *soft_iface);
|
2016-02-22 15:02:39 -05:00
|
|
|
bool batadv_softif_is_valid(const struct net_device *net_dev);
|
2013-02-11 04:10:26 -05:00
|
|
|
extern struct rtnl_link_ops batadv_link_ops;
|
2013-07-02 05:04:34 -04:00
|
|
|
int batadv_softif_create_vlan(struct batadv_priv *bat_priv, unsigned short vid);
|
2016-01-17 05:01:21 -05:00
|
|
|
void batadv_softif_vlan_put(struct batadv_softif_vlan *softif_vlan);
|
2013-07-02 05:04:35 -04:00
|
|
|
struct batadv_softif_vlan *batadv_softif_vlan_get(struct batadv_priv *bat_priv,
|
|
|
|
unsigned short vid);
|
2010-12-13 06:19:28 -05:00
|
|
|
|
|
|
|
#endif /* _NET_BATMAN_ADV_SOFT_INTERFACE_H_ */
|