track delay between transmission request and satisfaction:
[oweals/gnunet.git] / src / transport / plugin_transport_wlan.h
1 /*
2      This file is part of GNUnet
3      (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/plugin_transport_wlan.h
23  * @brief header for transport plugin and the helper for wlan
24  * @author David Brodski
25  */
26
27 #include "gnunet_common.h"
28
29 typedef unsigned int uint32_t;
30 typedef unsigned short uint16_t;
31
32 /* Wlan IEEE80211 header default */
33 static const uint8_t u8aIeeeHeader[] = 
34   {
35     0x08, 0x01, 0x00, 0x00,
36     0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
37     0x13, 0x22, 0x33, 0x44, 0x55, 0x66,
38     0x13, 0x22, 0x33, 0x44, 0x55, 0x66,
39     0x10, 0x86,
40   };
41
42 /**
43  * Wlan header
44  */
45
46 struct IeeeHeader
47 {
48   /**
49    * Wlan flags
50    */
51   uint32_t flags;
52   
53   /**
54    * first mac
55    */
56   uint8_t mac1[6];
57   
58   /**
59    * second mac
60    */
61   uint8_t mac2[6];
62   
63   /**
64    * third mac
65    */
66   uint8_t mac3[6];
67   
68   /**
69    * Wlan flags2
70    */
71   uint16_t flags2;
72 };
73
74 /* this is the template radiotap header we send packets out with */
75
76 static const uint8_t u8aRadiotapHeader[] = 
77   {
78     0x00, 0x00, // <-- radiotap version
79     0x19, 0x00, // <- radiotap header length
80     0x6f, 0x08, 0x00, 0x00, // <-- bitmap
81     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // <-- timestamp
82     0x00, // <-- flags (Offset +0x10)
83     0x6c, // <-- rate (0ffset +0x11)
84     0x71, 0x09, 0xc0, 0x00, // <-- channel
85     0xde, // <-- antsignal
86     0x00, // <-- antnoise
87     0x01, // <-- antenna
88 };
89
90 /**
91  * Radiotap Header
92  */
93 struct RadiotapHeader
94 {
95   /**
96    * radiotap version
97    */
98   uint16_t version GNUNET_PACKED;
99   
100   /**
101    * radiotap header length
102    */
103   uint16_t length GNUNET_PACKED;
104   
105   /**
106    * bitmap
107    */
108   uint32_t bitmap GNUNET_PACKED;
109   
110   /**
111    * timestamp
112    */
113   uint64_t timestamp GNUNET_PACKED;
114   
115   /**
116    * radiotap flags
117    */
118   uint8_t flags;
119   
120   /**
121    * wlan send rate
122    */
123   uint8_t rate;
124   
125   // FIXME: unaligned here, is this OK?
126   /**
127    * Wlan channel
128    */
129   uint32_t channel GNUNET_PACKED;
130   
131   /**
132    * antsignal
133    */
134   uint8_t antsignal;
135   
136   /**
137    * antnoise
138    */
139   uint8_t antnoise;
140   
141   /**
142    * antenna
143    */
144   uint8_t antenna;
145 };
146