blob: 1a29505f4f6653e0c5e65609829327d91ef7fdc8 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (C) 2013-2019 B.A.T.M.A.N. contributors:
3 *
4 * Linus Lüssing, Marek Lindner
5 */
6
7#ifndef _NET_BATMAN_ADV_BAT_V_ELP_H_
8#define _NET_BATMAN_ADV_BAT_V_ELP_H_
9
10#include "main.h"
11
12#include <linux/skbuff.h>
13#include <linux/workqueue.h>
14
15int batadv_v_elp_iface_enable(struct batadv_hard_iface *hard_iface);
16void batadv_v_elp_iface_disable(struct batadv_hard_iface *hard_iface);
17void batadv_v_elp_iface_activate(struct batadv_hard_iface *primary_iface,
18 struct batadv_hard_iface *hard_iface);
19void batadv_v_elp_primary_iface_set(struct batadv_hard_iface *primary_iface);
20int batadv_v_elp_packet_recv(struct sk_buff *skb,
21 struct batadv_hard_iface *if_incoming);
22void batadv_v_elp_throughput_metric_update(struct work_struct *work);
23
24#endif /* _NET_BATMAN_ADV_BAT_V_ELP_H_ */