blob: ddfa618e80bf0202fdf6bc89ffe213b44cbfb28a [file] [log] [blame]
Martin Hundebølld353d8d2013-01-25 11:12:38 +01001/* Copyright (C) 2012-2013 B.A.T.M.A.N. contributors:
2 *
3 * Martin Hundebøll, Jeppe Ledet-Pedersen
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
18 */
19
20#ifndef _NET_BATMAN_ADV_NETWORK_CODING_H_
21#define _NET_BATMAN_ADV_NETWORK_CODING_H_
22
23#ifdef CONFIG_BATMAN_ADV_NC
24
Matthias Schiffer6c519ba2013-09-27 18:03:39 +020025int batadv_nc_init(void);
26int batadv_nc_mesh_init(struct batadv_priv *bat_priv);
27void batadv_nc_mesh_free(struct batadv_priv *bat_priv);
Martin Hundebølld56b1702013-01-25 11:12:39 +010028void batadv_nc_update_nc_node(struct batadv_priv *bat_priv,
29 struct batadv_orig_node *orig_node,
30 struct batadv_orig_node *orig_neigh_node,
31 struct batadv_ogm_packet *ogm_packet,
32 int is_single_hop_neigh);
33void batadv_nc_purge_orig(struct batadv_priv *bat_priv,
34 struct batadv_orig_node *orig_node,
35 bool (*to_purge)(struct batadv_priv *,
36 struct batadv_nc_node *));
Martin Hundebølld353d8d2013-01-25 11:12:38 +010037void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv);
Martin Hundebølld56b1702013-01-25 11:12:39 +010038void batadv_nc_init_orig(struct batadv_orig_node *orig_node);
Martin Hundebøll95332472013-01-25 11:12:40 +010039bool batadv_nc_skb_forward(struct sk_buff *skb,
Martin Hundebølle91ecfc2013-04-20 13:54:39 +020040 struct batadv_neigh_node *neigh_node);
Martin Hundebøll612d2b42013-01-25 11:12:42 +010041void batadv_nc_skb_store_for_decoding(struct batadv_priv *bat_priv,
42 struct sk_buff *skb);
43void batadv_nc_skb_store_sniffed_unicast(struct batadv_priv *bat_priv,
44 struct sk_buff *skb);
Martin Hundebølld56b1702013-01-25 11:12:39 +010045int batadv_nc_nodes_seq_print_text(struct seq_file *seq, void *offset);
46int batadv_nc_init_debugfs(struct batadv_priv *bat_priv);
Martin Hundebølld353d8d2013-01-25 11:12:38 +010047
48#else /* ifdef CONFIG_BATMAN_ADV_NC */
49
Matthias Schiffer6c519ba2013-09-27 18:03:39 +020050static inline int batadv_nc_init(void)
Martin Hundebølld353d8d2013-01-25 11:12:38 +010051{
52 return 0;
53}
54
Matthias Schiffer6c519ba2013-09-27 18:03:39 +020055static 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)
Martin Hundebølld353d8d2013-01-25 11:12:38 +010061{
62 return;
63}
64
Martin Hundebølld56b1702013-01-25 11:12:39 +010065static inline void
66batadv_nc_update_nc_node(struct batadv_priv *bat_priv,
67 struct batadv_orig_node *orig_node,
68 struct batadv_orig_node *orig_neigh_node,
69 struct batadv_ogm_packet *ogm_packet,
70 int is_single_hop_neigh)
71{
72 return;
73}
74
75static inline void
76batadv_nc_purge_orig(struct batadv_priv *bat_priv,
77 struct batadv_orig_node *orig_node,
78 bool (*to_purge)(struct batadv_priv *,
79 struct batadv_nc_node *))
80{
81 return;
82}
83
Martin Hundebølld353d8d2013-01-25 11:12:38 +010084static inline void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv)
85{
86 return;
87}
88
Martin Hundebølld56b1702013-01-25 11:12:39 +010089static inline void batadv_nc_init_orig(struct batadv_orig_node *orig_node)
90{
91 return;
92}
93
Martin Hundebøll95332472013-01-25 11:12:40 +010094static inline bool batadv_nc_skb_forward(struct sk_buff *skb,
Martin Hundebølle91ecfc2013-04-20 13:54:39 +020095 struct batadv_neigh_node *neigh_node)
Martin Hundebøll95332472013-01-25 11:12:40 +010096{
97 return false;
98}
99
Martin Hundebøll612d2b42013-01-25 11:12:42 +0100100static inline void
101batadv_nc_skb_store_for_decoding(struct batadv_priv *bat_priv,
102 struct sk_buff *skb)
103{
104 return;
105}
106
107static inline void
108batadv_nc_skb_store_sniffed_unicast(struct batadv_priv *bat_priv,
109 struct sk_buff *skb)
110{
111 return;
112}
113
Martin Hundebølld56b1702013-01-25 11:12:39 +0100114static inline int batadv_nc_nodes_seq_print_text(struct seq_file *seq,
115 void *offset)
116{
117 return 0;
118}
119
120static inline int batadv_nc_init_debugfs(struct batadv_priv *bat_priv)
121{
122 return 0;
123}
124
Martin Hundebølld353d8d2013-01-25 11:12:38 +0100125#endif /* ifdef CONFIG_BATMAN_ADV_NC */
126
127#endif /* _NET_BATMAN_ADV_NETWORK_CODING_H_ */