blob: 7483cba4b5d4d7faa419bf6f3cd80d7b1c6afe7a [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
25int batadv_nc_init(struct batadv_priv *bat_priv);
26void batadv_nc_free(struct batadv_priv *bat_priv);
27void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv);
28
29#else /* ifdef CONFIG_BATMAN_ADV_NC */
30
31static inline int batadv_nc_init(struct batadv_priv *bat_priv)
32{
33 return 0;
34}
35
36static inline void batadv_nc_free(struct batadv_priv *bat_priv)
37{
38 return;
39}
40
41static inline void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv)
42{
43 return;
44}
45
46#endif /* ifdef CONFIG_BATMAN_ADV_NC */
47
48#endif /* _NET_BATMAN_ADV_NETWORK_CODING_H_ */