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