networksecurity/tls/protocol/applicationdata.cpp
branchRCL_3
changeset 75 c1029e558ef5
parent 67 bb2423252ea3
equal deleted inserted replaced
67:bb2423252ea3 75:c1029e558ef5
    33 	LOG(Log::Printf(_L("CSendAppData::NewL()"));)
    33 	LOG(Log::Printf(_L("CSendAppData::NewL()"));)
    34 	CSendAppData* self = new(ELeave) CSendAppData( aRecordComposer );
    34 	CSendAppData* self = new(ELeave) CSendAppData( aRecordComposer );
    35   	LOG(Log::Printf(_L("self %x - %x"), self, (TUint)self + sizeof( CSendAppData ));)
    35   	LOG(Log::Printf(_L("self %x - %x"), self, (TUint)self + sizeof( CSendAppData ));)
    36 	CleanupStack::PushL( self );
    36 	CleanupStack::PushL( self );
    37 	self->ConstructL( aRecordComposer );
    37 	self->ConstructL( aRecordComposer );
    38 	CleanupStack::Pop(self);
    38 	CleanupStack::Pop();
    39 	return self;
    39 	return self;
    40 }
    40 }
    41 
    41 
    42 inline CSendAppData::CSendAppData( CRecordComposer& aRecordComposer ) :
    42 inline CSendAppData::CSendAppData( CRecordComposer& aRecordComposer ) :
    43    iRecordComposer( aRecordComposer  )
    43    iRecordComposer( aRecordComposer  )
   165 	LOG(Log::Printf(_L("CRecvAppData::NewL()"));)
   165 	LOG(Log::Printf(_L("CRecvAppData::NewL()"));)
   166 	CRecvAppData* self = new(ELeave) CRecvAppData( aTlsConnection );
   166 	CRecvAppData* self = new(ELeave) CRecvAppData( aTlsConnection );
   167   	LOG(Log::Printf(_L("self %x - %x"), self, (TUint)self + sizeof( CRecvAppData ));)
   167   	LOG(Log::Printf(_L("self %x - %x"), self, (TUint)self + sizeof( CRecvAppData ));)
   168 	CleanupStack::PushL( self );
   168 	CleanupStack::PushL( self );
   169 	self->ConstructL( aTlsConnection );
   169 	self->ConstructL( aTlsConnection );
   170 	CleanupStack::Pop(self);
   170 	CleanupStack::Pop();
   171 	return self;
   171 	return self;
   172 }
   172 }
   173 
   173 
   174 inline CRecvAppData::CRecvAppData( CTlsConnection& aTlsConnection ) :
   174 inline CRecvAppData::CRecvAppData( CTlsConnection& aTlsConnection ) :
   175    iHeldData( 0, 0 ),
   175    iHeldData( 0, 0 ),