mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
ee1e884194
types.h is included by main.h, which is included at the beginning of any other c-file anyway. Therefore this commit removes those duplicate inclussions. Signed-off-by: Linus Lüssing <linus.luessing@ascom.ch> Signed-off-by: Sven Eckelmann <sven@narfation.org>
33 lines
1.0 KiB
C
33 lines
1.0 KiB
C
/*
|
|
* Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
|
|
*
|
|
* 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
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA
|
|
*
|
|
*/
|
|
|
|
#ifndef _NET_BATMAN_ADV_ICMP_SOCKET_H_
|
|
#define _NET_BATMAN_ADV_ICMP_SOCKET_H_
|
|
|
|
#define ICMP_SOCKET "socket"
|
|
|
|
void bat_socket_init(void);
|
|
int bat_socket_setup(struct bat_priv *bat_priv);
|
|
void bat_socket_receive_packet(struct icmp_packet_rr *icmp_packet,
|
|
size_t icmp_len);
|
|
|
|
#endif /* _NET_BATMAN_ADV_ICMP_SOCKET_H_ */
|