linklayercontrol/networkinterfacemgr/inc/nifprvar_internal.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 14 May 2010 17:24:38 +0300
changeset 20 e8d041006974
parent 0 af10295192d8
permissions -rw-r--r--
Revision: 201019 Kit: 201019

// Copyright (c) 1997-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:
// Interface Manager Standard Variable Names
// 
//

/**
 @file nifprvar_internal.h
*/

#ifndef __NIFPRVAR_INTERNAL_H__
#define __NIFPRVAR_INTERNAL_H__
#include <comms-infras/nifprvar.h>
/**
@internalComponent
*/
#define NIF_IFSERVERMODE            _L("Service\\IfServerMode")
#define NIF_CLIENTTIMEOUT			_L("Timeout\\Client")
#define NIF_ROUTETIMEOUT			_L("Timeout\\Route")
#define NIF_STOPIFNOCLIENT			_L("Timeout\\StopIfNoClient")
#define NIF_RECONNECTIFNOCLIENT     _L("Timeout\\ReconnectIfNoClient")

/**
Query is dial in responses from NetDial
@internalComponent
*/
enum TNDDialType
	{
	ENDDialTypeDialOut,
	ENDDialTypeDialIn,
	ENDDialTypeCallBackDialIn
	};

/**
Identical to TAgentToNifEventType, but defined to move the mindset away from NIF
terminology and towards the new architecture
*/
enum TAgentToFlowEventType
	{
	EAgentToFlowEventTypeModifyInitialTimer,		//< for GPRS context activation
	EAgentToFlowEventTypeDisableTimers,			//< for GPRS suspension
	EAgentToFlowEventTypeEnableTimers,			//< for GPRS resumption
	EAgentToFlowEventTypeGetDataTransfer,
	EAgentToFlowEventTypeDisableConnection,
	EAgentToFlowEventTsyConfig,
	EAgentToFlowEventTsyConnectionSpeed,
	EAgentToFlowEventVendorSpecific = KVendorSpecificNotificationStart
	};

/**
Identical to TNifToAgentEventType, but defined to move the mindset away from NIF
terminology and towards the new architecture
*/
enum TFlowToAgentEventType
	{
	EFlowToAgentEventTypePPPCallbackGranted	= 1,
	EFlowToAgentEventTypeQueryIsDialIn	= 2,
	EFlowToAgentEventTypeLinkLayerDown	= 3,
	EFlowToAgentEventTsyConfig           = 4,
	EFlowToAgentEventTsyConnectionSpeed  = 5,	
	
	EFlowToAgentEventVendorSpecific = KVendorSpecificNotificationStart
	};
	
#endif