wlanutilities/wlansniffer/engine/client/src/wsfeventhandler.cpp
branchRCL_3
changeset 13 858c6c491d0e
parent 11 8b0eae1b1d71
--- a/wlanutilities/wlansniffer/engine/client/src/wsfeventhandler.cpp	Wed Mar 31 23:17:49 2010 +0300
+++ b/wlanutilities/wlansniffer/engine/client/src/wsfeventhandler.cpp	Wed Apr 14 17:07:39 2010 +0300
@@ -296,8 +296,10 @@
 //
 void CWsfEventHandler::BlockNextConnectedEvent()
     {
+    LOG_ENTERFN( "CWsfEventHandler::BlockNextConnectedEvent" );
     if ( iConnecting )
         {
+        LOG_WRITE( "iBlockConnectedEvent to true" );
         // set the flag only if we are the ones who are connecting
         iBlockConnectedEvent = ETrue;
         }
@@ -305,11 +307,25 @@
 
 
 // ---------------------------------------------------------------------------
+// CWsfEventHandler::UnBlockNextConnectedEvent
+// ---------------------------------------------------------------------------
+//
+void CWsfEventHandler::UnBlockNextConnectedEvent()
+    {
+    LOG_ENTERFN( "CWsfEventHandler::UnBlockNextConnectedEvent" );
+    LOG_WRITE( "iBlockConnectedEvent to false" );
+    iBlockConnectedEvent = EFalse;
+    }
+
+
+// ---------------------------------------------------------------------------
 // CWsfEventHandler::SetConnecting
 // ---------------------------------------------------------------------------
 //
 void CWsfEventHandler::SetConnecting( TBool aConnecting )
     {
+    LOG_ENTERFN( "CWsfEventHandler::SetConnecting" );
+    LOG_WRITEF( "iConnecting=%d, aConnecting=%d", iConnecting, aConnecting );
     iConnecting = aConnecting;
     }