summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2004-07-28 16:33:32 (UTC)
committer mickeyl <mickeyl>2004-07-28 16:33:32 (UTC)
commit19eab093c4d63ae275d215f400b1d262390daa16 (patch) (unidiff)
tree74b48d8ebe8c303c30bc969e32884306a480dc48
parent614c7e0add47c87902da610e7f31f5abe0d79655 (diff)
downloadopie-19eab093c4d63ae275d215f400b1d262390daa16.zip
opie-19eab093c4d63ae275d215f400b1d262390daa16.tar.gz
opie-19eab093c4d63ae275d215f400b1d262390daa16.tar.bz2
disambiguate
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/wlan/wextensions.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/noncore/settings/networksettings/wlan/wextensions.cpp b/noncore/settings/networksettings/wlan/wextensions.cpp
index fe21f02..8a9db66 100644
--- a/noncore/settings/networksettings/wlan/wextensions.cpp
+++ b/noncore/settings/networksettings/wlan/wextensions.cpp
@@ -11,113 +11,117 @@ using namespace Opie::Core;
11/* STD */ 11/* STD */
12#include <arpa/inet.h> 12#include <arpa/inet.h>
13#include <sys/socket.h> 13#include <sys/socket.h>
14#include <sys/ioctl.h> 14#include <sys/ioctl.h>
15#include <math.h> 15#include <math.h>
16 16
17#define PROCNETWIRELESS "/proc/net/wireless" 17#define PROCNETWIRELESS "/proc/net/wireless"
18#define IW_LOWER 0 18#define IW_LOWER 0
19#define IW_UPPER 256 19#define IW_UPPER 256
20 20
21#warning This is duplicated code. Use libopienet2! 21#warning This is duplicated code. Use libopienet2!
22 22
23/** 23/**
24 * Constructor. Sets hasWirelessExtensions 24 * Constructor. Sets hasWirelessExtensions
25 */ 25 */
26WExtensions::WExtensions(QString interfaceName): hasWirelessExtensions(false), interface(interfaceName) { 26WExtensions::WExtensions(QString interfaceName): hasWirelessExtensions(false), interface(interfaceName) {
27 fd = socket( AF_INET, SOCK_DGRAM, 0 ); 27 fd = socket( AF_INET, SOCK_DGRAM, 0 );
28 if(fd == -1) 28 if(fd == -1)
29 return; 29 return;
30 30
31 const char* buffer[200]; 31 const char* buffer[200];
32 memset( &iwr, 0, sizeof( iwr ) ); 32 memset( &iwr, 0, sizeof( iwr ) );
33 iwr.u.essid.pointer = (caddr_t) buffer; 33 iwr.u.essid.pointer = (caddr_t) buffer;
34 iwr.u.essid.length = IW_ESSID_MAX_SIZE; 34 iwr.u.essid.length = IW_ESSID_MAX_SIZE;
35 iwr.u.essid.flags = 0; 35 iwr.u.essid.flags = 0;
36 36
37 // check if it is an IEEE 802.11 standard conform 37 // check if it is an IEEE 802.11 standard conform
38 // wireless device by sending SIOCGIWESSID 38 // wireless device by sending SIOCGIWESSID
39 // which also gives back the Extended Service Set ID 39 // which also gives back the Extended Service Set ID
40 // (see IEEE 802.11 for more information) 40 // (see IEEE 802.11 for more information)
41 41
42 const char* iname = interface.latin1(); 42 const char* iname = interface.latin1();
43 strcpy( iwr.ifr_ifrn.ifrn_name, (const char *)iname ); 43 strcpy( iwr.ifr_ifrn.ifrn_name, (const char *)iname );
44 if ( 0 == ioctl( fd, SIOCGIWESSID, &iwr ) ) 44 if ( 0 == ioctl( fd, SIOCGIWESSID, &iwr ) )
45 hasWirelessExtensions = true; 45 hasWirelessExtensions = true;
46} 46}
47 47
48/** 48/**
49 * @return QString the station name of the access point. 49 * @return QString the station name of the access point.
50 */ 50 */
51QString WExtensions::station(){ 51QString WExtensions::station(){
52 if(!hasWirelessExtensions) 52 if(!hasWirelessExtensions)
53 return QString(); 53 return QString();
54 const char* buffer[200]; 54 const char* buffer[200];
55 iwr.u.data.pointer = (caddr_t) buffer; 55 iwr.u.data.pointer = (caddr_t) buffer;
56 iwr.u.data.length = IW_ESSID_MAX_SIZE; 56 iwr.u.data.length = IW_ESSID_MAX_SIZE;
57 iwr.u.data.flags = 0; 57 iwr.u.data.flags = 0;
58 if ( 0 == ioctl( fd, SIOCGIWNICKN, &iwr )){ 58 if ( 0 == ioctl( fd, SIOCGIWNICKN, &iwr )){
59 iwr.u.data.pointer[(unsigned int) iwr.u.data.length-1] = '\0'; 59 buffer[(unsigned int) iwr.u.data.length-1] = '\0';
60 return QString(iwr.u.data.pointer); 60 return (const char*) buffer;
61 } 61 }
62 return QString(); 62 return QString::null;
63} 63}
64 64
65/** 65/**
66 * @return QString the essid of the host 802.11 access point. 66 * @return QString the essid of the host 802.11 access point.
67 */ 67 */
68QString WExtensions::essid(){ 68QString WExtensions::essid(){
69 if(!hasWirelessExtensions) 69 if(!hasWirelessExtensions)
70 return QString(); 70 return QString();
71 const char* buffer[200];
72 iwr.u.data.pointer = (caddr_t) buffer;
73 iwr.u.data.length = IW_ESSID_MAX_SIZE;
74 iwr.u.data.flags = 0;
71 if ( 0 == ioctl( fd, SIOCGIWESSID, &iwr )){ 75 if ( 0 == ioctl( fd, SIOCGIWESSID, &iwr )){
72 iwr.u.essid.pointer[(unsigned int) iwr.u.essid.length] = '\0'; 76 buffer[(unsigned int) iwr.u.essid.length] = '\0';
73 return QString(iwr.u.essid.pointer); 77 return (const char*) buffer;
74 } 78 }
75 return QString(); 79 return QString::null;
76} 80}
77 81
78/** 82/**
79 * @return QString the mode of interface 83 * @return QString the mode of interface
80 */ 84 */
81QString WExtensions::mode(){ 85QString WExtensions::mode(){
82 if(!hasWirelessExtensions) 86 if(!hasWirelessExtensions)
83 return QString(); 87 return QString();
84 if ( 0 == ioctl( fd, SIOCGIWMODE, &iwr ) ) 88 if ( 0 == ioctl( fd, SIOCGIWMODE, &iwr ) )
85 return QString("%1").arg(iwr.u.mode == IW_MODE_ADHOC ? "Ad-Hoc" : "Managed"); 89 return QString("%1").arg(iwr.u.mode == IW_MODE_ADHOC ? "Ad-Hoc" : "Managed");
86 return QString(); 90 return QString();
87} 91}
88 92
89/** 93/**
90 * Get the frequency that the interface is running at. 94 * Get the frequency that the interface is running at.
91 * @return int the frequency that the interfacae is running at. 95 * @return int the frequency that the interfacae is running at.
92 */ 96 */
93double WExtensions::frequency(){ 97double WExtensions::frequency(){
94 if(!hasWirelessExtensions) 98 if(!hasWirelessExtensions)
95 return 0; 99 return 0;
96 if ( 0 == ioctl( fd, SIOCGIWFREQ, &iwr )) 100 if ( 0 == ioctl( fd, SIOCGIWFREQ, &iwr ))
97 return (double( iwr.u.freq.m ) * pow( 10, iwr.u.freq.e ) / 1000000000); 101 return (double( iwr.u.freq.m ) * pow( 10, iwr.u.freq.e ) / 1000000000);
98 return 0; 102 return 0;
99} 103}
100 104
101/** 105/**
102 * Get the channel that the interface is running at. 106 * Get the channel that the interface is running at.
103 * @return int the channel that the interfacae is running at. 107 * @return int the channel that the interfacae is running at.
104 */ 108 */
105int WExtensions::channel(){ 109int WExtensions::channel(){
106 if(!hasWirelessExtensions) 110 if(!hasWirelessExtensions)
107 return 0; 111 return 0;
108 if ( 0 != ioctl( fd, SIOCGIWFREQ, &iwr )) 112 if ( 0 != ioctl( fd, SIOCGIWFREQ, &iwr ))
109 return 0; 113 return 0;
110 114
111 // http://www.elanix.com/pdf/an137e.pdf 115 // http://www.elanix.com/pdf/an137e.pdf
112 116
113 double num = (double( iwr.u.freq.m ) * pow( 10, iwr.u.freq.e ) / 1000000000); 117 double num = (double( iwr.u.freq.m ) * pow( 10, iwr.u.freq.e ) / 1000000000);
114 double left = 2.401; 118 double left = 2.401;
115 double right = 2.416; 119 double right = 2.416;
116 for(int channel = 1; channel<= 15; channel++){ 120 for(int channel = 1; channel<= 15; channel++){
117 if( num >= left && num <= right ) 121 if( num >= left && num <= right )
118 return channel; 122 return channel;
119 left += 0.005; 123 left += 0.005;
120 right += 0.005; 124 right += 0.005;
121 } 125 }
122 odebug << QString("Unknown frequency: %1, returning -1 for the channel.").arg(num).latin1() << oendl; 126 odebug << QString("Unknown frequency: %1, returning -1 for the channel.").arg(num).latin1() << oendl;
123 return -1; 127 return -1;