diff -r 000000000000 -r 1bce908db942 natfw/natfwstunturnclient/src/cstunbindinggetsharedsecret.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/natfw/natfwstunturnclient/src/cstunbindinggetsharedsecret.cpp Tue Feb 02 01:04:58 2010 +0200 @@ -0,0 +1,97 @@ +/* +* Copyright (c) 2005-2007 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + + +#include "stunassert.h" +#include "natfwbindingimplementationbase.h" +#include "cstunbindinggetsharedsecret.h" + + +// ======== MEMBER FUNCTIONS ======== + +// --------------------------------------------------------------------------- +// CSTUNBindingGetSharedSecret::CSTUNBindingGetSharedSecret +// --------------------------------------------------------------------------- +// +CSTUNBindingGetSharedSecret::CSTUNBindingGetSharedSecret( + CSTUNBindingState& aGetPublicAddress ) : + iGetPublicAddress( aGetPublicAddress ) + { + } + +// --------------------------------------------------------------------------- +// CSTUNBindingGetSharedSecret::CSTUNBindingGetSharedSecret +// Dummy implementation. Default constructor is declared private and not used. +// --------------------------------------------------------------------------- +// +CSTUNBindingGetSharedSecret::CSTUNBindingGetSharedSecret() : + iGetPublicAddress( *( CSTUNBindingState* )0x1 ) + { + } + +// --------------------------------------------------------------------------- +// CSTUNBindingGetSharedSecret::CSTUNBindingGetSharedSecret +// Dummy implementation, as copy constructor is declared private and not used. +// --------------------------------------------------------------------------- +// +CSTUNBindingGetSharedSecret::CSTUNBindingGetSharedSecret( + const CSTUNBindingGetSharedSecret& aGetSharedSecret ) : + CSTUNBindingState(), + iGetPublicAddress( aGetSharedSecret.iGetPublicAddress ) + { + } + +// --------------------------------------------------------------------------- +// CSTUNBindingGetSharedSecret::~CSTUNBindingGetSharedSecret +// --------------------------------------------------------------------------- +// +CSTUNBindingGetSharedSecret::~CSTUNBindingGetSharedSecret() + { + } + +// --------------------------------------------------------------------------- +// CSTUNBindingGetSharedSecret::SharedSecretObtainedL +// --------------------------------------------------------------------------- +// +void CSTUNBindingGetSharedSecret::SharedSecretObtainedL( + CBindingImplementation& aContext, + const TDesC8& aUsername, + const TDesC8& aPassword ) const + { + // CreateBindingRequestL and SendBindingRequestL are valid method calls + // for both stun and stun-relay functionality. State machine should + // work fine. + aContext.CreateBindingRequestL( aUsername, aPassword ); + aContext.SendBindingRequestL(); + aContext.ChangeState( iGetPublicAddress ); + } + +// --------------------------------------------------------------------------- +// CSTUNBindingGetSharedSecret::SendRequestL +// No action, since obtaining a binding is already in progress. +// --------------------------------------------------------------------------- +// +void CSTUNBindingGetSharedSecret::SendRequestL( + CBindingImplementation& /*aContext*/ ) const + { + } + + +// End of file +