From patchwork Sun Aug 15 10:51:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 311 Return-Path: Received: from mail.gmx.net (mailout-de.gmx.net [213.165.64.22]) by open-mesh.net (Postfix) with SMTP id DAAC1154580 for ; Sun, 15 Aug 2010 12:51:29 +0200 (CEST) Received: (qmail invoked by alias); 15 Aug 2010 10:51:28 -0000 Received: from i59F6BB41.versanet.de (EHLO sven-desktop.lazhur.ath.cx) [89.246.187.65] by mail.gmx.net (mp008) with SMTP; 15 Aug 2010 12:51:28 +0200 X-Authenticated: #15668376 X-Provags-ID: V01U2FsdGVkX188Sp0tT+I85uvfdJPuqnDQY3DQ9dP5IIAGyPV0ot XJyGVfkH+Esr3o From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Sun, 15 Aug 2010 12:51:25 +0200 Message-Id: <1281869485-32283-1-git-send-email-sven.eckelmann@gmx.de> X-Mailer: git-send-email 1.7.1 X-Y-GMX-Trusted: 0 Subject: [B.A.T.M.A.N.] [PATCH] batman-adv: Add include guards to unicast.h X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2010 10:51:30 -0000 Signed-off-by: Sven Eckelmann --- batman-adv/unicast.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/batman-adv/unicast.h b/batman-adv/unicast.h index 06f374e..1d5cbeb 100644 --- a/batman-adv/unicast.h +++ b/batman-adv/unicast.h @@ -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 frag_packet_list_entry *search_frag_packet(struct list_head *head, 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_ */