blob: bd4295fb960f85a90cbed2b61ea3d32ca662ca70 [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 Schifferb44cfec2013-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,
40 struct batadv_neigh_node *neigh_node,
41 struct ethhdr *ethhdr);
Martin Hundebøll612d2b42013-01-25 11:12:42 +010042void batadv_nc_skb_store_for_decoding(struct batadv_priv *bat_priv,
43 struct sk_buff *skb);
44void batadv_nc_skb_store_sniffed_unicast(struct batadv_priv *bat_priv,
45 struct sk_buff *skb);
Martin Hundebølld56b1702013-01-25 11:12:39 +010046int batadv_nc_nodes_seq_print_text(struct seq_file *seq, void *offset);
47int batadv_nc_init_debugfs(struct batadv_priv *bat_priv);
Martin Hundebølld353d8d2013-01-25 11:12:38 +010048
49#else /* ifdef CONFIG_BATMAN_ADV_NC */
50
Matthias Schifferb44cfec2013-09-27 18:03:39 +020051static inline int batadv_nc_init(void)
Martin Hundebølld353d8d2013-01-25 11:12:38 +010052{
53 return 0;
54}
55
Matthias Schifferb44cfec2013-09-27 18:03:39 +020056static inline int batadv_nc_mesh_init(struct batadv_priv *bat_priv)
57{
58 return 0;
59}
60
61static inline void batadv_nc_mesh_free(struct batadv_priv *bat_priv)
Martin Hundebølld353d8d2013-01-25 11:12:38 +010062{
63 return;
64}
65
Martin Hundebølld56b1702013-01-25 11:12:39 +010066static inline void
67batadv_nc_update_nc_node(struct batadv_priv *bat_priv,
68 struct batadv_orig_node *orig_node,
69 struct batadv_orig_node *orig_neigh_node,
70 struct batadv_ogm_packet *ogm_packet,
71 int is_single_hop_neigh)
72{
73 return;
74}
75
76static inline void
77batadv_nc_purge_orig(struct batadv_priv *bat_priv,
78 struct batadv_orig_node *orig_node,
79 bool (*to_purge)(struct batadv_priv *,
80 struct batadv_nc_node *))
81{
82 return;
83}
84
Martin Hundebølld353d8d2013-01-25 11:12:38 +010085static inline void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv)
86{
87 return;
88}
89
Martin Hundebølld56b1702013-01-25 11:12:39 +010090static inline void batadv_nc_init_orig(struct batadv_orig_node *orig_node)
91{
92 return;
93}
94
Martin Hundebøll95332472013-01-25 11:12:40 +010095static inline bool batadv_nc_skb_forward(struct sk_buff *skb,
96 struct batadv_neigh_node *neigh_node,
97 struct ethhdr *ethhdr)
98{
99 return false;
100}
101
Martin Hundebøll612d2b42013-01-25 11:12:42 +0100102static inline void
103batadv_nc_skb_store_for_decoding(struct batadv_priv *bat_priv,
104 struct sk_buff *skb)
105{
106 return;
107}
108
109static inline void
110batadv_nc_skb_store_sniffed_unicast(struct batadv_priv *bat_priv,
111 struct sk_buff *skb)
112{
113 return;
114}
115
Martin Hundebølld56b1702013-01-25 11:12:39 +0100116static inline int batadv_nc_nodes_seq_print_text(struct seq_file *seq,
117 void *offset)
118{
119 return 0;
120}
121
122static inline int batadv_nc_init_debugfs(struct batadv_priv *bat_priv)
123{
124 return 0;
125}
126
Martin Hundebølld353d8d2013-01-25 11:12:38 +0100127#endif /* ifdef CONFIG_BATMAN_ADV_NC */
128
129#endif /* _NET_BATMAN_ADV_NETWORK_CODING_H_ */