blob: daf87f07fadd8e8a4d82d35a0d268bc9c3f2d3c3 [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sven Eckelmann6b1aea82018-01-01 00:00:00 +01002/* Copyright (C) 2007-2018 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Marek Lindner
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000017 */
18
19#ifndef _NET_BATMAN_ADV_SOFT_INTERFACE_H_
20#define _NET_BATMAN_ADV_SOFT_INTERFACE_H_
21
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020022#include "main.h"
23
Sven Eckelmann4b426b12016-02-22 21:02:39 +010024#include <linux/types.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020025#include <net/rtnetlink.h>
26
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020027struct net_device;
Andrew Lunn2cd45a02016-04-21 12:57:27 +020028struct net;
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020029struct sk_buff;
30
Sven Eckelmann04b482a2012-05-12 02:09:38 +020031int batadv_skb_head_push(struct sk_buff *skb, unsigned int len);
Antonio Quartulli37135172012-07-05 23:38:30 +020032void batadv_interface_rx(struct net_device *soft_iface,
Sven Eckelmann6535db52016-02-28 11:38:51 +010033 struct sk_buff *skb, int hdr_size,
34 struct batadv_orig_node *orig_node);
Andrew Lunn2cd45a02016-04-21 12:57:27 +020035struct net_device *batadv_softif_create(struct net *net, const char *name);
Marek Lindnere07932a2013-02-11 17:10:25 +080036void batadv_softif_destroy_sysfs(struct net_device *soft_iface);
Sven Eckelmann4b426b12016-02-22 21:02:39 +010037bool batadv_softif_is_valid(const struct net_device *net_dev);
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +080038extern struct rtnl_link_ops batadv_link_ops;
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +020039int batadv_softif_create_vlan(struct batadv_priv *bat_priv, unsigned short vid);
Sven Eckelmann9c3bf082016-01-17 11:01:21 +010040void batadv_softif_vlan_put(struct batadv_softif_vlan *softif_vlan);
Antonio Quartulli90f44352013-07-02 11:04:35 +020041struct batadv_softif_vlan *batadv_softif_vlan_get(struct batadv_priv *bat_priv,
42 unsigned short vid);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043
44#endif /* _NET_BATMAN_ADV_SOFT_INTERFACE_H_ */