sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: scsserverconstants.h sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: @released sl@0: */ sl@0: sl@0: #ifndef SCSSERVERCONSTANTS_H sl@0: #define SCSSERVERCONSTANTS_H sl@0: sl@0: // -------- debugging -------- sl@0: sl@0: /** sl@0: The server is panicked with this category when it detects an invalid state. sl@0: sl@0: @see TServerPanic sl@0: /** sl@0: */ sl@0: _LIT(KServerPanicCat, "SCS-Server"); sl@0: sl@0: sl@0: enum TServerPanic sl@0: /** sl@0: The server is panicked with these reasons when it detects an invalid state. sl@0: sl@0: @see TScsServerPanicCat sl@0: */ sl@0: { sl@0: ESvrRemSessions = 0, ///< Server object destroyed with outstanding sessions. sl@0: ESvrRemCleanup = 1, ///< Server object destroyed with outstanding cleanup. sl@0: ESvrRemRequests = 2 ///< Server object destroyed with outstanding requests. sl@0: }; sl@0: sl@0: sl@0: void PanicServer(TServerPanic aPanic); sl@0: sl@0: void PanicClient(const RMessagePtr2& aMessage, ScsImpl::TScsClientPanic aReason); sl@0: sl@0: #endif // SCSSERVERCONSTANTS_H