Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 2 | /* Copyright (C) 2013-2019 B.A.T.M.A.N. contributors: |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3 | * |
| 4 | * Linus Lüssing, Marek Lindner |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 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 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 12 | #include <linux/skbuff.h> |
| 13 | #include <linux/workqueue.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 14 | |
| 15 | int batadv_v_elp_iface_enable(struct batadv_hard_iface *hard_iface); |
| 16 | void batadv_v_elp_iface_disable(struct batadv_hard_iface *hard_iface); |
| 17 | void batadv_v_elp_iface_activate(struct batadv_hard_iface *primary_iface, |
| 18 | struct batadv_hard_iface *hard_iface); |
| 19 | void batadv_v_elp_primary_iface_set(struct batadv_hard_iface *primary_iface); |
| 20 | int batadv_v_elp_packet_recv(struct sk_buff *skb, |
| 21 | struct batadv_hard_iface *if_incoming); |
| 22 | void batadv_v_elp_throughput_metric_update(struct work_struct *work); |
| 23 | |
| 24 | #endif /* _NET_BATMAN_ADV_BAT_V_ELP_H_ */ |