2017-11-19 22:05:11 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2019-01-01 06:59:59 +08:00
|
|
|
/* Copyright (C) 2016-2019 B.A.T.M.A.N. contributors:
|
2016-05-10 00:41:08 +08:00
|
|
|
*
|
|
|
|
* Matthias Schiffer
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_BATMAN_ADV_NETLINK_H_
|
|
|
|
#define _NET_BATMAN_ADV_NETLINK_H_
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
2019-05-25 02:11:17 +08:00
|
|
|
#include <linux/netlink.h>
|
2016-05-05 19:09:43 +08:00
|
|
|
#include <linux/types.h>
|
2016-07-03 19:31:35 +08:00
|
|
|
#include <net/genetlink.h>
|
2016-05-05 19:09:43 +08:00
|
|
|
|
2016-05-10 00:41:08 +08:00
|
|
|
void batadv_netlink_register(void);
|
|
|
|
void batadv_netlink_unregister(void);
|
2016-07-03 19:31:37 +08:00
|
|
|
int batadv_netlink_get_ifindex(const struct nlmsghdr *nlh, int attrtype);
|
2016-05-10 00:41:08 +08:00
|
|
|
|
2016-05-05 19:09:43 +08:00
|
|
|
int batadv_netlink_tpmeter_notify(struct batadv_priv *bat_priv, const u8 *dst,
|
|
|
|
u8 result, u32 test_time, u64 total_bytes,
|
|
|
|
u32 cookie);
|
|
|
|
|
2018-11-23 23:07:12 +08:00
|
|
|
int batadv_netlink_notify_mesh(struct batadv_priv *bat_priv);
|
|
|
|
int batadv_netlink_notify_hardif(struct batadv_priv *bat_priv,
|
|
|
|
struct batadv_hard_iface *hard_iface);
|
|
|
|
int batadv_netlink_notify_vlan(struct batadv_priv *bat_priv,
|
|
|
|
struct batadv_softif_vlan *vlan);
|
|
|
|
|
2016-07-03 19:31:35 +08:00
|
|
|
extern struct genl_family batadv_netlink_family;
|
|
|
|
|
2016-05-10 00:41:08 +08:00
|
|
|
#endif /* _NET_BATMAN_ADV_NETLINK_H_ */
|