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