2017-11-19 15:05:11 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2018-12-31 23:59:59 +01:00
|
|
|
/* Copyright (C) 2011-2019 B.A.T.M.A.N. contributors:
|
2011-11-28 10:40:17 +01:00
|
|
|
*
|
2016-01-16 09:40:09 +01:00
|
|
|
* Marek Lindner, Linus Lüssing
|
2011-11-28 10:40:17 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_BATMAN_ADV_BAT_ALGO_H_
|
|
|
|
#define _NET_BATMAN_ADV_BAT_ALGO_H_
|
|
|
|
|
2016-05-10 16:31:59 +02:00
|
|
|
#include "main.h"
|
2016-01-16 09:40:12 +01:00
|
|
|
|
2016-05-15 11:07:44 +02:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2016-07-03 13:31:35 +02:00
|
|
|
struct netlink_callback;
|
2016-05-15 11:07:44 +02:00
|
|
|
struct seq_file;
|
2016-07-03 13:31:35 +02:00
|
|
|
struct sk_buff;
|
2016-05-15 11:07:44 +02:00
|
|
|
|
|
|
|
extern char batadv_routing_algo[];
|
|
|
|
extern struct list_head batadv_hardif_list;
|
|
|
|
|
|
|
|
void batadv_algo_init(void);
|
|
|
|
int batadv_algo_register(struct batadv_algo_ops *bat_algo_ops);
|
|
|
|
int batadv_algo_select(struct batadv_priv *bat_priv, char *name);
|
|
|
|
int batadv_algo_seq_print_text(struct seq_file *seq, void *offset);
|
2016-07-03 13:31:35 +02:00
|
|
|
int batadv_algo_dump(struct sk_buff *msg, struct netlink_callback *cb);
|
2016-05-15 11:07:44 +02:00
|
|
|
|
2011-11-28 10:40:17 +01:00
|
|
|
#endif /* _NET_BATMAN_ADV_BAT_ALGO_H_ */
|