wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp
branchRCL_3
changeset 17 a828660c511c
parent 14 13838cf40350
child 18 d3d7683d16f5
--- a/wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp	Thu Aug 19 11:40:48 2010 +0300
+++ b/wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp	Tue Aug 31 17:02:06 2010 +0300
@@ -16,7 +16,7 @@
 */
 
 /*
-* %version: 28.1.1 %
+* %version: 31 %
 */
 
 #include <in_sock.h>
@@ -544,13 +544,18 @@
 //
 EXPORT_C void RWLMServer::RunProtectedSetup(
     TRequestStatus& aStatus,
-    TUint32 aId,
+    const TWlanSsid& aSsid,
+    const TWlanWpsPin& aWspPin,  
     TDes8& aCredentials )
     {
     DEBUG( "RWLMServer::RunProtectedSetup(TRequestStatus)" );
 
     aStatus = KRequestPending;
-    TIpcArgs params( aId, &aCredentials );
+    
+    iWlanSsidPckg = aSsid;
+    iWlanWpsPinPckg = aWspPin;
+    
+    TIpcArgs params( &iWlanSsidPckg, &iWlanWpsPinPckg, &aCredentials );
 
     // Send the command
     SendReceive( ERunProtectedSetup, params, aStatus );