2014-01-04 18:04:25 +01:00
|
|
|
/* Copyright (C) 2007-2014 B.A.T.M.A.N. contributors:
|
2010-12-13 12:19:28 +01:00
|
|
|
*
|
|
|
|
* Marek Lindner
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
|
|
* License as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2013-11-03 20:40:48 +01:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2010-12-13 12:19:28 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_BATMAN_ADV_ICMP_SOCKET_H_
|
|
|
|
#define _NET_BATMAN_ADV_ICMP_SOCKET_H_
|
|
|
|
|
2012-06-03 22:19:12 +02:00
|
|
|
#define BATADV_ICMP_SOCKET "socket"
|
2010-12-13 12:19:28 +01:00
|
|
|
|
2012-05-12 02:09:33 +02:00
|
|
|
void batadv_socket_init(void);
|
2012-06-05 22:31:31 +02:00
|
|
|
int batadv_socket_setup(struct batadv_priv *bat_priv);
|
2013-10-22 22:50:09 +02:00
|
|
|
void batadv_socket_receive_packet(struct batadv_icmp_header *icmph,
|
2012-05-12 02:09:33 +02:00
|
|
|
size_t icmp_len);
|
2010-12-13 12:19:28 +01:00
|
|
|
|
|
|
|
#endif /* _NET_BATMAN_ADV_ICMP_SOCKET_H_ */
|