blob: e44a7da51431bbae76e656f5d9055c2003896365 [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner
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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
18#ifndef _NET_BATMAN_ADV_ICMP_SOCKET_H_
19#define _NET_BATMAN_ADV_ICMP_SOCKET_H_
20
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include "main.h"
22
23#include <linux/types.h>
24
25struct batadv_icmp_header;
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020026
Sven Eckelmann64346642012-06-03 22:19:12 +020027#define BATADV_ICMP_SOCKET "socket"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000028
Sven Eckelmann56303d32012-06-05 22:31:31 +020029int batadv_socket_setup(struct batadv_priv *bat_priv);
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +020030
31#ifdef CONFIG_BATMAN_ADV_DEBUGFS
32
33void batadv_socket_init(void);
Simon Wunderlichda6b8c22013-10-22 22:50:09 +020034void batadv_socket_receive_packet(struct batadv_icmp_header *icmph,
Sven Eckelmann9039dc72012-05-12 02:09:33 +020035 size_t icmp_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000036
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +020037#else
38
39static inline void batadv_socket_init(void)
40{
41}
42
43static inline void
44batadv_socket_receive_packet(struct batadv_icmp_header *icmph, size_t icmp_len)
45{
46}
47
48#endif
49
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050#endif /* _NET_BATMAN_ADV_ICMP_SOCKET_H_ */