networksecurity/tls/protocol/tlshandshake.cpp
branchRCL_3
changeset 75 c1029e558ef5
parent 67 bb2423252ea3
equal deleted inserted replaced
67:bb2423252ea3 75:c1029e558ef5
    53 
    53 
    54 	CHandshake* self = new(ELeave) CHandshake(aTlsConnection);
    54 	CHandshake* self = new(ELeave) CHandshake(aTlsConnection);
    55   	LOG(Log::Printf(_L("self %x - %x"), self, (TUint)self + sizeof( CHandshake ));)
    55   	LOG(Log::Printf(_L("self %x - %x"), self, (TUint)self + sizeof( CHandshake ));)
    56 	CleanupStack::PushL(self);
    56 	CleanupStack::PushL(self);
    57 	self->ConstructL(aTlsConnection);
    57 	self->ConstructL(aTlsConnection);
    58 	CleanupStack::Pop(self);
    58 	CleanupStack::Pop();
    59 	return self;
    59 	return self;
    60 }
    60 }
    61 
    61 
    62 CHandshake::~CHandshake()
    62 CHandshake::~CHandshake()
    63 /**
    63 /**