diff -r 000000000000 -r 307788aac0a8 sipproviderplugins/sipprovider/sipconnectionplugins/inc/sipcprmessages.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sipproviderplugins/sipprovider/sipconnectionplugins/inc/sipcprmessages.h Tue Feb 02 01:03:15 2010 +0200 @@ -0,0 +1,67 @@ +// 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 Connection Provider messages +// +// + +/** + @file + @internalTechnology +*/ + +#ifndef SIPCPRMESSAGES_H_ +#define SIPCPRMESSAGES_H_ + +#include + +namespace SipCpr +{ +enum TCprStage + { + EFresh = 0, + EStarting, + EActive, + EStopping, + EStopped + }; + +enum TConnType + { + EConnIncoming, + EConnOutgoing + }; + + +class TSipCprMessages + { +public: + enum {ERealmId = 0x10274C37 }; +private: + enum + { + ESipCprRegistrationComplete = Messages::TEBase::TNull::EId+5000, + ESipCprDeRegistrationComplete, + EIncomingConnection + }; + +public: + typedef Messages::TMessageSigNumber TRegistrationComplete; + typedef Messages::TMessageSigNumber TDeRegistrationComplete; + typedef Messages::TMessageSigNumber TIncomingConnection; + }; + +} + +#endif //SIPCPRMESSAGES_H_ +