browserutilities/downloadmgr/DownloadMgrClntSrv/src/DownloadMgrSrvSession.cpp
branchRCL_3
changeset 48 79859ed3eea9
parent 42 a1a5d4e727e8
child 49 919f36ff910f
--- a/browserutilities/downloadmgr/DownloadMgrClntSrv/src/DownloadMgrSrvSession.cpp	Thu Aug 19 10:58:56 2010 +0300
+++ b/browserutilities/downloadmgr/DownloadMgrClntSrv/src/DownloadMgrSrvSession.cpp	Tue Aug 31 16:17:46 2010 +0300
@@ -16,14 +16,15 @@
 *
 */
 
+
 // INCLUDE FILES
 #include "DownloadMgrLogger.h"
 #include "DownloadMgrServer.h"
 #include "DownloadMgrDef.h"
 #include "DownloadMgrEventQueue.h"
 
-#include "HttpClientAppInstance.h"
-#include "HttpDownload.h"
+#include <HttpClientAppInstance.h>
+#include <HttpDownload.h>
 #include <e32svr.h>
 #include <basched.h>
 
@@ -145,7 +146,6 @@
     if( iComplete || ( KErrNone != err ) )
         {
         // Only the syncron requests has to be completed here!
-        if ((!aMessage.IsNull()) && (!CurrentMessage().IsNull())  )
 	    aMessage.Complete( err );
         }
 	}
@@ -174,11 +174,6 @@
     // check for session-relative requests
 	switch( aMessage.Function() )
 		{
-	    case EHttpDownMgrNumOfSubSessions:
-	         {
-	         GetNumberOfSubsession();
-	         return;
-	         }
         case EHttpDownloadMgrInitialize:
             {
             InitializeL();
@@ -317,24 +312,6 @@
     }
 
 // ---------------------------------------------------------
-// CDownloadMgrSession::GetNumberOfSubsession
-// ---------------------------------------------------------
-//
-void CDownloadMgrSession::GetNumberOfSubsession()
-    {    
-    TInt32 value(0);   
-    for( TInt i = 0; i < iObjectIx->Count(); i++ ){
-        CDownloadSubSession* downloadSess 
-                    = ( CDownloadSubSession* )(*iObjectIx)[i];
-         if( downloadSess != NULL ){
-         value++;  
-         }
-        }
-    TPckg<TInt32> pckg( value );
-    Write( 0, CurrentMessage(), pckg );    
-    }
-
-// ---------------------------------------------------------
 // CDownloadMgrSession::InitializeL
 // ---------------------------------------------------------
 //
@@ -355,9 +332,8 @@
     CArrayPtrFlat<CHttpDownload>* currentDownloads = iClientAppInstance->DownloadsL();
 	TPckg<TInt> countPckg( currentDownloads->Count() );
 	TPckg<TInt> sessionId( iSessionId );
-  if (!CurrentMessage().IsNull())
+
     Write( 1, CurrentMessage(), countPckg );
-  if (!CurrentMessage().IsNull())
     Write( 3, CurrentMessage(), sessionId );
 
     CLOG_NAME_2( _L("Session_%x_%x"), uidPckg().iUid, iSessionId );