summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/wlan/wextensions.h
authorbenmeyer <benmeyer>2002-12-11 20:16:34 (UTC)
committer benmeyer <benmeyer>2002-12-11 20:16:34 (UTC)
commit3b2ec1e3ba172771365ff7822f623c3c6cb4d378 (patch) (side-by-side diff)
treed65ee26af6ee85b804ca3de5e738ba4fdb37d17c /noncore/net/networksetup/wlan/wextensions.h
parent3faddab31483bda0dd9d093cd473ffb801207b9c (diff)
downloadopie-3b2ec1e3ba172771365ff7822f623c3c6cb4d378.zip
opie-3b2ec1e3ba172771365ff7822f623c3c6cb4d378.tar.gz
opie-3b2ec1e3ba172771365ff7822f623c3c6cb4d378.tar.bz2
Now will display the channel and not the freqency
Diffstat (limited to 'noncore/net/networksetup/wlan/wextensions.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/networksetup/wlan/wextensions.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/net/networksetup/wlan/wextensions.h b/noncore/net/networksetup/wlan/wextensions.h
index 1565eb5..a89e33a 100644
--- a/noncore/net/networksetup/wlan/wextensions.h
+++ b/noncore/net/networksetup/wlan/wextensions.h
@@ -7,24 +7,25 @@
#include <linux/wireless.h>
class WExtensions {
public:
WExtensions(QString interfaceName);
QString getInterfaceName(){return interface;};
bool doesHaveWirelessExtensions(){return hasWirelessExtensions;};
QString station();
QString essid();
QString mode();
double frequency();
+ int channel();
double rate();
QString ap();
bool stats( int &signal, int &noise, int &quality);
private:
bool hasWirelessExtensions;
QString interface;
// Used in we calls
struct iwreq iwr;
int fd;