-
Notifications
You must be signed in to change notification settings - Fork 84
/
WTPDriverInteraction.c
190 lines (161 loc) · 6.8 KB
/
WTPDriverInteraction.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*******************************************************************************************
* Copyright (c) 2006-7 Laboratorio di Sistemi di Elaborazione e Bioingegneria Informatica *
* Universita' Campus BioMedico - Italy *
* *
* This program is free software; you can redistribute it and/or modify it under the terms *
* of the GNU General Public License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but WITHOUT ANY *
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A *
* PARTICULAR PURPOSE. See the GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License along with this *
* program; if not, write to the: *
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, *
* MA 02111-1307, USA. *
* *
* In addition, as a special exception, the copyright holders give permission to link the *
* code of portions of this program with the OpenSSL library under certain conditions as *
* described in each individual source file, and distribute linked combinations including *
* the two. You must obey the GNU General Public License in all respects for all of the *
* code used other than OpenSSL. If you modify file(s) with this exception, you may *
* extend this exception to your version of the file(s), but you are not obligated to do *
* so. If you do not wish to do so, delete this exception statement from your version. *
* If you delete this exception statement from all source files in the program, then also *
* delete it here. *
*
* --------------------------------------------------------------------------------------- *
* Project: Capwap *
* *
* Author : Ludovico Rossi ([email protected]) *
* Del Moro Andrea ([email protected]) *
* Giovannini Federica ([email protected]) *
* Massimo Vellucci ([email protected]) *
* Mauro Bisson ([email protected]) *
*******************************************************************************************/
#include "CWWTP.h"
#ifdef DMALLOC
#include "../dmalloc-5.5.0/dmalloc.h"
#endif
#define SIOCIWFIRSTPRIV 0x8BE0
#define IEEE80211_IOCTL_SETWMMPARAMS (SIOCIWFIRSTPRIV+4)
#define IEEE80211_IOCTL_GETWMMPARAMS (SIOCIWFIRSTPRIV+5)
#define IEEE80211_WMMPARAMS_CWMIN 1
#define IEEE80211_WMMPARAMS_CWMAX 2
#define IEEE80211_WMMPARAMS_AIFS 3
/*
* Elena Agostini - 02/2014
*
* No more ioctl() on wireless drivers. Those function simulate ioctl() query to wireless drivers
* returning settings file params.
* API coming soon..
*/
/**************************** iwconfig ****************************/
/*--------------------------- Frequency ---------------------------*/
int set_freq(int sock, struct iwreq wrq, int value)
{
//CWLog("Frequensta impostata a: %d", qosStaticFreq);
return 1;
}
int get_freq(int sock, struct iwreq* wrq)
{
//CWLog("Frequensta impostata a: %d", qosStaticFreq);
return 1;
}
/*--------------------------- Bit rate ---------------------------*/
int set_bitrate(int sock, struct iwreq wrq, int value)
{
//CWLog("nBit rate impostata a: %d", qosStaticBitRate);
return 1;
}
int get_bitrate(int sock, struct iwreq* wrq)
{
//CWLog("nBit rate impostata a: %d", qosStaticBitRate);
return 1;
}
/*--------------------------- Fragmentation Threshold ---------------------------*/
int set_frag(int sock, struct iwreq wrq, int value)
{
//CWLog("\nFragmentation threshold impostato a: %d", qosStaticFrag);
return 1;
}
int get_frag(int sock, struct iwreq* wrq)
{
//CWLog("Fragmentation threshold: %d", qosStaticFrag);
return 1;
}
extern int qosStaticTxq;
extern int ;
extern int qosStaticWmeCwMax;
extern int qosStaticAifsn;
/*--------------------------- Transmit Power ---------------------------*/
int set_txpower(int sock, struct iwreq wrq, int value)
{
//CWLog("Transmit power impostato a: %d", qosStaticTxPower);
return 1;
}
int get_txpower(int sock, struct iwreq* wrq)
{
//CWLog("Transmit power: %d", qosStaticTxPower);
return 1;
}
/**************************** iwpriv ****************************/
/*--------------------------- CWMIN ---------------------------*/
int set_cwmin(int sock, struct iwreq wrq, int acclass, int sta, int value)
{
//CWLog("nCWMIN impostato a: %d", qosStaticCwMin);
return 1;
}
int get_cwmin(int sock, struct iwreq* wrq, int acclass, int sta)
{
//CWLog("nCWMIN a: %d\n", qosStaticCwMin);
return 1;
}
/*--------------------------- CWMAX ---------------------------*/
int set_cwmax(int sock, struct iwreq wrq, int acclass, int sta, int value)
{
//CWLog("nCWMAX impostato a: %d", qosStaticCwMax);
return 1;
}
int get_cwmax(int sock, struct iwreq* wrq, int acclass, int sta)
{
//CWLog("nCWMAX a: %d", qosStaticCwMax);
return 1;
}
/*--------------------------- AIFS ---------------------------*/
int set_aifs(int sock, struct iwreq wrq, int acclass, int sta, int value)
{
//CWLog("nAIFS impostato a: %d", qosStaticAifs);
return 1;
}
int get_aifs(int sock, struct iwreq* wrq, int acclass, int sta)
{
//CWLog("nAIFS a: %d\n", qosStaticAifs);
return 1;
}
/*
int set_txq(int code, int cwmin, int cwmax, int aifs, int burst_time)
{
char str[32];
sprintf(str,"X%d %d %d %d %d", code, cwmin, cwmax, aifs, burst_time);
CWWTPsend_command_to_hostapd_SET_TXQ(str, strlen(str));
return 1;
}
*/
/* +++++++++++++++ SOFTMAC ++++++++++++++++ */
/*set CWMIN*/
int set_wme_cwmin(int class,int value){
printf("\nCWMIN impostato a: %d", qosStaticWmeCwMin);
return 1;
}
/*set CWMAX*/
int set_wme_cwmax(int class,int value){
printf("\nCWMAX impostato a: %d", qosStaticWmeCwMax);
return 1;
}
/*set AIFSN*/
int set_wme_aifsn(int class,int value){
printf("\nAIFSN impostato a: %d", qosStaticWmeAifsn);
return 1;
}