Author: marek
Date: 2010-08-20 22:42:22 +0200 (Fri, 20 Aug 2010)
New Revision: 1776
Modified:
trunk/batman-adv/unicast.h
Log:
batman-adv: Add include guards to unicast.h
Signed-off-by: Sven Eckelmann <sven.eckelmann(a)gmx.de>
Modified: trunk/batman-adv/unicast.h
===================================================================
--- trunk/batman-adv/unicast.h 2010-08-20 19:16:14 UTC (rev 1775)
+++ trunk/batman-adv/unicast.h 2010-08-20 20:42:22 UTC (rev 1776)
@@ -19,6 +19,9 @@
*
*/
+#ifndef _NET_BATMAN_ADV_UNICAST_H_
+#define _NET_BATMAN_ADV_UNICAST_H_
+
#define FRAG_TIMEOUT 10000 /* purge frag list entrys after time in ms */
#define FRAG_BUFFER_SIZE 6 /* number of list elements in buffer */
@@ -32,3 +35,5 @@
struct unicast_frag_packet *up);
void frag_list_free(struct list_head *head);
int unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv);
+
+#endif /* _NET_BATMAN_ADV_UNICAST_H_ */