forked from vollero/openCAPWAP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWTPmacDriverInteraction.c
More file actions
94 lines (70 loc) · 3.67 KB
/
WTPmacDriverInteraction.c
File metadata and controls
94 lines (70 loc) · 3.67 KB
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
/*******************************************************************************************
* 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. *
* *
* --------------------------------------------------------------------------------------- *
* Project: Capwap *
* *
* Author : Ludovico Rossi (ludo@bluepixysw.com) *
* Del Moro Andrea (andrea_delmoro@libero.it) *
* Giovannini Federica (giovannini.federica@gmail.com) *
* Massimo Vellucci (m.vellucci@unicampus.it) *
* Mauro Bisson (mauro.bis@gmail.com) *
*******************************************************************************************/
/*prototipi da includere in CWWTP.h*/
int set_rts_threshold(int value);
int get_rts_threshold(int* value);
int set_frag_threshold(int value);
int get_frag_threshold(int *value);
/*--------------------------- RTS/CTS Threshold ---------------------------*/
int set_rts_threshold(int value){
printf("\nRTS/CTS threshold impostato a: %d\n",value);
return 1;
}
int get_rts_threshold(int *value){
printf("\nRTS/CTS threshold: %d\n", *value);
return 1;
}
/*--------------------------- Fragmentation Threshold ---------------------------*/
int set_frag_threshold(int value){
printf("\nFragmentation threshold impostato a: %d\n",value);
return 1;
}
int get_frag_threshold(int *value){
printf("\nFragmentation threshold: %d\n", *value);
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;
}
/*set CWMIN*/
int set_wme_cwmin(int class,int value){
printf("\nCWMIN impostato a: %d\n", value);
return 1;
}
/*set CWMAX*/
int set_wme_cwmax(int class,int value){
printf("\nCWMAX impostato a: %d\n", value);
return 1;
}
/*set AIFSN*/
int set_wme_aifsn(int class,int value){
printf("\nAIFSN impostato a: %d\n", value);
return 1;
}