diff -r 000000000000 -r 307788aac0a8 sipproviderplugins/sipprovider/sipconnectionplugins/inc/sipdeftscpr.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sipproviderplugins/sipprovider/sipconnectionplugins/inc/sipdeftscpr.h Tue Feb 02 01:03:15 2010 +0200 @@ -0,0 +1,69 @@ +// Copyright (c) 2007-2009 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: +// SIP Default SubConnection Provider class. +// +// + +/** + @file + @internalComponent +*/ + +#ifndef SYMBIAN_SIPDEFTSCPR_H +#define SYMBIAN_SIPDEFTSCPR_H + + + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "sipscprfactory.h" +#include + +#ifdef __CFLOG_ACTIVE + #define KSipSCprTag KESockSubConnectionTag + _LIT8(KSipDeftSCprSubTag, "sipdeftscpr"); +#endif + + + +class CSipDefaultSubConnectionProvider : public CCoreSubConnectionProvider +/** Default SIP subconnection provider + +@internalTechnology +@released Since 9.5 */ + { + friend class CSipSubConnectionProviderFactory; +public: + typedef CSipSubConnectionProviderFactory FactoryType; + + /** + Destructor of the class + */ + virtual ~CSipDefaultSubConnectionProvider(); + +protected: + CSipDefaultSubConnectionProvider(ESock::CSubConnectionProviderFactoryBase& aFactory); + void ConstructL(); + static CSipDefaultSubConnectionProvider* NewL(ESock::CSubConnectionProviderFactoryBase& aFactory); + virtual void ReceivedL(const Messages::TRuntimeCtxId& aSender, const Messages::TNodeId& aRecipient, Messages::TSignatureBase& aMessage); + }; + +#endif //SYMBIAN_SIPDEFTSCPR_H