diff -r a0fdcd0e4c56 -r 7d966ab5304a wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp --- a/wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp Fri Jun 04 12:12:29 2010 +0300 +++ b/wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/rwlmserver.cpp Fri Jun 18 09:56:50 2010 +0300 @@ -16,7 +16,7 @@ */ /* -* %version: 28 % +* %version: 30 % */ #include @@ -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 );