networksecurity/tls/protocol/tlshandshake.cpp
branchRCL_3
changeset 67 bb2423252ea3
parent 0 af10295192d8
child 75 c1029e558ef5
equal deleted inserted replaced
63:425d8f4f7fa5 67:bb2423252ea3
    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();
    58 	CleanupStack::Pop(self);
    59 	return self;
    59 	return self;
    60 }
    60 }
    61 
    61 
    62 CHandshake::~CHandshake()
    62 CHandshake::~CHandshake()
    63 /**
    63 /**