From a9eddd4cd428dd844d8693e98e4df8e365e75da8 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Thu, 23 Oct 2003 17:51:00 +0000 Subject: misc changes --- (limited to 'libopie2/examples/opienet') 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,4 +1,5 @@ #include +#include #include int main( int argc, char** argv ) @@ -27,7 +28,7 @@ int main( int argc, char** argv ) //if ( iface->mode() == OWirelessNetworkInterface::adhoc ) //{ - qDebug( "DEMO: Associated AP has MAC Address '%s'", (const char*) iface->associatedAP() ); + qDebug( "DEMO: Associated AP has MAC Address '%s'", (const char*) iface->associatedAP().toString() ); //} // nickname @@ -58,11 +59,18 @@ int main( int argc, char** argv ) // network scan - int stations = iface->scanNetwork(); - if ( stations != -1 ) + OStationList* stations = iface->scanNetwork(); + if ( stations ) { - qDebug( "DEMO: # of stations around = %d", stations ); + qDebug( "DEMO: # of stations around = %d", stations->count() ); + OStation* station; + for ( station = stations->first(); station != 0; station = stations->next() ) + { + qDebug( "DEMO: station dump following..." ); + station->dump(); + } } + else { qDebug( "DEMO: Warning! Scan didn't work!" ); -- cgit v0.9.0.2