wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp
changeset 36 1c425781161e
parent 13 ab7247ff6ef9
child 32 c01ef7f246fd
--- a/wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp	Wed Jun 23 20:17:42 2010 +0300
+++ b/wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp	Tue Jul 06 16:24:00 2010 +0300
@@ -16,7 +16,7 @@
 */
 
 /*
-* %version: 28 %
+* %version: 30 %
 */
 
 #include <in_sock.h>
@@ -541,13 +541,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 );