| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|---|
| 2 | /* Copyright (C) B.A.T.M.A.N. contributors: |
| 3 | * |
| 4 | * Marek Lindner, Linus Lüssing |
| 5 | */ |
| 6 | |
| 7 | #ifndef _NET_BATMAN_ADV_BAT_ALGO_H_ |
| 8 | #define _NET_BATMAN_ADV_BAT_ALGO_H_ |
| 9 | |
| 10 | #include "main.h" |
| 11 | |
| 12 | #include <linux/netlink.h> |
| 13 | #include <linux/skbuff.h> |
| 14 | |
| 15 | extern char batadv_routing_algo[]; |
| 16 | |
| 17 | void batadv_algo_init(void); |
| 18 | struct batadv_algo_ops *batadv_algo_get(const char *name); |
| 19 | int batadv_algo_register(struct batadv_algo_ops *bat_algo_ops); |
| 20 | int batadv_algo_select(struct batadv_priv *bat_priv, const char *name); |
| 21 | int batadv_algo_dump(struct sk_buff *msg, struct netlink_callback *cb); |
| 22 | |
| 23 | #endif /* _NET_BATMAN_ADV_BAT_ALGO_H_ */ |
| 24 |
