-simplify
[oweals/gnunet.git] / src / transport / plugin_transport_wlan.h
1 /*
2  This file is part of GNUnet
3  (C) 2010, 2011 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 #ifndef PLUGIN_TRANSPORT_WLAN
27 #define PLUGIN_TRANSPORT_WLAN
28
29 #include <stdint.h>
30 #include "gnunet_common.h"
31
32 /**
33  * Number fo bytes in a mac address.
34  */
35 #define MAC_ADDR_SIZE 6
36
37 /**
38  * A MAC Address.
39  */
40 struct MacAddress
41 {
42   uint8_t mac[MAC_ADDR_SIZE];
43 };
44
45
46 GNUNET_NETWORK_STRUCT_BEGIN
47
48 /**
49  * Format of a WLAN Control Message.
50  */
51 struct GNUNET_TRANSPORT_WLAN_HelperControlMessage
52 {
53   /**
54    * Message header. FIXME: type?
55    */
56   struct GNUNET_MessageHeader hdr;
57
58   /**
59    * MAC Address. FIXME: of what?
60    */
61   struct MacAddress mac;
62 };
63 GNUNET_NETWORK_STRUCT_END
64
65 /**
66  * GNUnet bssid
67  */
68 static const struct MacAddress mac_bssid_gnunet = {
69   {0x13, 0x22, 0x33, 0x44, 0x55, 0x66}
70 };
71
72
73 /**
74  * Broadcast MAC
75  */
76 static const struct MacAddress bc_all_mac = {
77   {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}
78 };
79
80
81 struct Radiotap_Send
82 {
83   /**
84    * wlan send rate
85    */
86   uint8_t rate;
87
88   /**
89    * Antenna; the first antenna is 0.
90    */
91   uint8_t antenna;
92
93   /**
94    * Transmit power expressed as unitless distance from max power set at factory calibration.
95    * 0 is max power. Monotonically nondecreasing with lower power levels.
96    */
97   uint16_t tx_power;
98 };
99
100
101 /**
102  * struct to represent infos gathered form the radiotap fields, see RadiotapHeader for more Infos
103  */
104 struct Radiotap_rx
105 {
106   /**
107    * FIXME: not initialized properly so far. (supposed to contain
108    * information about which of the fields below are actually valid).
109    */
110   uint32_t ri_present;
111
112   /**
113    * IEEE80211_RADIOTAP_TSFT
114    */
115   uint64_t ri_mactime;
116
117   /**
118    * from radiotap
119    * either IEEE80211_RADIOTAP_DBM_ANTSIGNAL
120    * or IEEE80211_RADIOTAP_DB_ANTSIGNAL
121    */
122   int32_t ri_power;
123
124   /**
125    * either IEEE80211_RADIOTAP_DBM_ANTNOISE
126    * or IEEE80211_RADIOTAP_DB_ANTNOISE
127    */
128   int32_t ri_noise;
129
130   /**
131    * IEEE80211_RADIOTAP_CHANNEL
132    */
133   uint32_t ri_channel;
134
135   /**
136    * Frequency we use.  FIXME: not properly initialized so far!
137    */
138   uint32_t ri_freq;
139
140   /**
141    * IEEE80211_RADIOTAP_RATE * 50000
142    */
143   uint32_t ri_rate;
144
145   /**
146    * IEEE80211_RADIOTAP_ANTENNA
147    */
148   uint32_t ri_antenna;
149 };
150
151
152
153 #endif