summaryrefslogtreecommitdiff
path: root/libopie2/examples
authormickeyl <mickeyl>2003-10-23 17:51:00 (UTC)
committer mickeyl <mickeyl>2003-10-23 17:51:00 (UTC)
commita9eddd4cd428dd844d8693e98e4df8e365e75da8 (patch) (unidiff)
tree21b5957143ad30b0efb505694505985ca65d3850 /libopie2/examples
parenta61c014e1fb43e36aa7454ce4b3cb9a7a706c6fa (diff)
downloadopie-a9eddd4cd428dd844d8693e98e4df8e365e75da8.zip
opie-a9eddd4cd428dd844d8693e98e4df8e365e75da8.tar.gz
opie-a9eddd4cd428dd844d8693e98e4df8e365e75da8.tar.bz2
misc changes
Diffstat (limited to 'libopie2/examples') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp b/libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp
index fc2026f..21026e1 100644
--- a/libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp
+++ b/libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp
@@ -1,9 +1,10 @@
1#include <opie2/onetwork.h> 1#include <opie2/onetwork.h>
2#include <opie2/ostation.h>
2#include <opie2/omanufacturerdb.h> 3#include <opie2/omanufacturerdb.h>
3 4
4int main( int argc, char** argv ) 5int main( int argc, char** argv )
5{ 6{
6 qDebug( "OPIE Network Demo" ); 7 qDebug( "OPIE Network Demo" );
7 8
8 ONetwork* net = ONetwork::instance(); 9 ONetwork* net = ONetwork::instance();
9 10
@@ -22,17 +23,17 @@ int main( int argc, char** argv )
22 { 23 {
23 OWirelessNetworkInterface* iface = static_cast<OWirelessNetworkInterface*>( it.current() ); 24 OWirelessNetworkInterface* iface = static_cast<OWirelessNetworkInterface*>( it.current() );
24 qDebug( "DEMO: '%s' seems to feature the wireless extensions.", (const char*) iface->name() ); 25 qDebug( "DEMO: '%s' seems to feature the wireless extensions.", (const char*) iface->name() );
25 qDebug( "DEMO: Current SSID is '%s'", (const char*) iface->SSID() ); 26 qDebug( "DEMO: Current SSID is '%s'", (const char*) iface->SSID() );
26 qDebug( "DEMO: Antenna is tuned to '%f', that is channel %d", iface->frequency(), iface->channel() ); 27 qDebug( "DEMO: Antenna is tuned to '%f', that is channel %d", iface->frequency(), iface->channel() );
27 28
28 //if ( iface->mode() == OWirelessNetworkInterface::adhoc ) 29 //if ( iface->mode() == OWirelessNetworkInterface::adhoc )
29 //{ 30 //{
30 qDebug( "DEMO: Associated AP has MAC Address '%s'", (const char*) iface->associatedAP() ); 31 qDebug( "DEMO: Associated AP has MAC Address '%s'", (const char*) iface->associatedAP().toString() );
31 //} 32 //}
32 33
33 // nickname 34 // nickname
34 qDebug( "DEMO: Current NickName is '%s'", (const char*) iface->nickName() ); 35 qDebug( "DEMO: Current NickName is '%s'", (const char*) iface->nickName() );
35 iface->setNickName( "MyNickName" ); 36 iface->setNickName( "MyNickName" );
36 if ( iface->nickName() != "MyNickName" ) 37 if ( iface->nickName() != "MyNickName" )
37 qDebug( "DEMO: Warning! Can't change nickname" ); 38 qDebug( "DEMO: Warning! Can't change nickname" );
38 else 39 else
@@ -53,21 +54,28 @@ int main( int argc, char** argv )
53 qDebug( "DEMO: Warning! Can't change RF channel" ); 54 qDebug( "DEMO: Warning! Can't change RF channel" );
54 else 55 else
55 qDebug( "DEMO: RF channel change successful." ); 56 qDebug( "DEMO: RF channel change successful." );
56 57
57 iface->setMode( "managed" ); 58 iface->setMode( "managed" );
58 59
59 // network scan 60 // network scan
60 61
61 int stations = iface->scanNetwork(); 62 OStationList* stations = iface->scanNetwork();
62 if ( stations != -1 ) 63 if ( stations )
63 { 64 {
64 qDebug( "DEMO: # of stations around = %d", stations ); 65 qDebug( "DEMO: # of stations around = %d", stations->count() );
66 OStation* station;
67 for ( station = stations->first(); station != 0; station = stations->next() )
68 {
69 qDebug( "DEMO: station dump following..." );
70 station->dump();
71 }
65 } 72 }
73
66 else 74 else
67 { 75 {
68 qDebug( "DEMO: Warning! Scan didn't work!" ); 76 qDebug( "DEMO: Warning! Scan didn't work!" );
69 } 77 }
70 78
71 /* 79 /*
72 80
73 // first some wrong calls to check if this is working 81 // first some wrong calls to check if this is working