]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - net/batman-adv/network-coding.h
batman-adv: Update copyright years for 2020
[mirror_ubuntu-hirsute-kernel.git] / net / batman-adv / network-coding.h
CommitLineData
7db7d9f3 1/* SPDX-License-Identifier: GPL-2.0 */
68e039f9 2/* Copyright (C) 2012-2020 B.A.T.M.A.N. contributors:
d353d8d4
MH
3 *
4 * Martin Hundebøll, Jeppe Ledet-Pedersen
d353d8d4
MH
5 */
6
7#ifndef _NET_BATMAN_ADV_NETWORK_CODING_H_
8#define _NET_BATMAN_ADV_NETWORK_CODING_H_
9
1e2c2a4f
SE
10#include "main.h"
11
68a600de
SE
12#include <linux/netdevice.h>
13#include <linux/seq_file.h>
14#include <linux/skbuff.h>
1e2c2a4f 15#include <linux/types.h>
68a600de 16#include <uapi/linux/batadv_packet.h>
1e2c2a4f 17
d353d8d4
MH
18#ifdef CONFIG_BATMAN_ADV_NC
19
3f4841ff 20void batadv_nc_status_update(struct net_device *net_dev);
6c519bad
MS
21int batadv_nc_init(void);
22int batadv_nc_mesh_init(struct batadv_priv *bat_priv);
23void batadv_nc_mesh_free(struct batadv_priv *bat_priv);
d56b1705
MH
24void batadv_nc_update_nc_node(struct batadv_priv *bat_priv,
25 struct batadv_orig_node *orig_node,
26 struct batadv_orig_node *orig_neigh_node,
27 struct batadv_ogm_packet *ogm_packet,
28 int is_single_hop_neigh);
29void batadv_nc_purge_orig(struct batadv_priv *bat_priv,
30 struct batadv_orig_node *orig_node,
31 bool (*to_purge)(struct batadv_priv *,
32 struct batadv_nc_node *));
d353d8d4 33void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv);
d56b1705 34void batadv_nc_init_orig(struct batadv_orig_node *orig_node);
95332477 35bool batadv_nc_skb_forward(struct sk_buff *skb,
e91ecfc6 36 struct batadv_neigh_node *neigh_node);
612d2b4f
MH
37void batadv_nc_skb_store_for_decoding(struct batadv_priv *bat_priv,
38 struct sk_buff *skb);
39void batadv_nc_skb_store_sniffed_unicast(struct batadv_priv *bat_priv,
40 struct sk_buff *skb);
d56b1705 41int batadv_nc_nodes_seq_print_text(struct seq_file *seq, void *offset);
3bcacd1e 42void batadv_nc_init_debugfs(struct batadv_priv *bat_priv);
d353d8d4
MH
43
44#else /* ifdef CONFIG_BATMAN_ADV_NC */
45
3f4841ff
ML
46static inline void batadv_nc_status_update(struct net_device *net_dev)
47{
48}
49
6c519bad 50static inline int batadv_nc_init(void)
d353d8d4
MH
51{
52 return 0;
53}
54
6c519bad
MS
55static inline int batadv_nc_mesh_init(struct batadv_priv *bat_priv)
56{
57 return 0;
58}
59
60static inline void batadv_nc_mesh_free(struct batadv_priv *bat_priv)
d353d8d4 61{
d353d8d4
MH
62}
63
d56b1705
MH
64static inline void
65batadv_nc_update_nc_node(struct batadv_priv *bat_priv,
66 struct batadv_orig_node *orig_node,
67 struct batadv_orig_node *orig_neigh_node,
68 struct batadv_ogm_packet *ogm_packet,
69 int is_single_hop_neigh)
70{
d56b1705
MH
71}
72
73static inline void
74batadv_nc_purge_orig(struct batadv_priv *bat_priv,
75 struct batadv_orig_node *orig_node,
76 bool (*to_purge)(struct batadv_priv *,
77 struct batadv_nc_node *))
78{
d56b1705
MH
79}
80
d353d8d4
MH
81static inline void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv)
82{
d353d8d4
MH
83}
84
d56b1705
MH
85static inline void batadv_nc_init_orig(struct batadv_orig_node *orig_node)
86{
d56b1705
MH
87}
88
95332477 89static inline bool batadv_nc_skb_forward(struct sk_buff *skb,
e91ecfc6 90 struct batadv_neigh_node *neigh_node)
95332477
MH
91{
92 return false;
93}
94
612d2b4f
MH
95static inline void
96batadv_nc_skb_store_for_decoding(struct batadv_priv *bat_priv,
97 struct sk_buff *skb)
98{
612d2b4f
MH
99}
100
101static inline void
102batadv_nc_skb_store_sniffed_unicast(struct batadv_priv *bat_priv,
103 struct sk_buff *skb)
104{
612d2b4f
MH
105}
106
d56b1705
MH
107static inline int batadv_nc_nodes_seq_print_text(struct seq_file *seq,
108 void *offset)
109{
110 return 0;
111}
112
3bcacd1e 113static inline void batadv_nc_init_debugfs(struct batadv_priv *bat_priv)
d56b1705 114{
d56b1705
MH
115}
116
d353d8d4
MH
117#endif /* ifdef CONFIG_BATMAN_ADV_NC */
118
119#endif /* _NET_BATMAN_ADV_NETWORK_CODING_H_ */