ipcm_pub/connection_settings_api/inc/cmpluginvpndef.h
author hgs
Mon, 24 May 2010 20:51:35 +0300
changeset 32 5c4486441ae6
parent 0 5a93021fdf25
child 58 83ca720e2b9a
permissions -rw-r--r--
201021

/*
* Copyright (c) 2006 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:  Attributes for VPN plug-in.
*
*/

#ifndef VPN_PLUGIN_DEF_H
#define VPN_PLUGIN_DEF_H

#include <cmconnectionmethoddef.h>

/**  ECOM interface UID */
const TUint KPluginVPNBearerTypeUid = 0x10281BBD;

namespace CMManager
    {
    /**
     VPN specific attributes
     
     Note: ECmProxyPortNumber is a common bearer attribute, but its  default
     value varies in the VPN plug-in, where it is 80
     
     Note2: VPN, as it is a virtual plugin, does not supports the following 
     common attributes (these are valid only for real bearers):
            ECmIFName,                  ECmIFParams,        
            ECmIFNetworks,              ECmIFPromptForAuth,
            ECmIFAuthName,              ECmIFAuthPass,
            ECmIFAuthRetries,           ECmIPNetmask,
            ECmIPGateway,               ECmIPAddFromServer,
            ECmIPAddress,               ECmIPDNSAddrFromServer,
            ECmIPNameServer1,           ECmIPNameServer2,   
            ECmIP6DNSAddrFromServer,    ECmIP6NameServer1,
            ECmIP6NameServer2,          ECmIPAddrLeaseValidFrom,
            ECmIPAddrLeaseValidTo,      ECmConfigDaemonManagerName,
            ECmConfigDaemonName,        ECmEnableLPCExtension,
            ECmDisablePlainTextAuth
     Querying these will leave with KErrNotSupported.
     */
    enum TConnectionMethodVpnSpecificAttributes
        {
        EPluginVpnAttribStart = 30000,  /**<
                                        * Marks the beginning of the VPN
                                        * attributes.
                                        */
        
        EVpnServicePolicyName = 30100,  /**<
                                        * Deprecated
                                        * Always leaves with code KErrNotSupported.
                                        * (String - default: None)
                                        */
                                        
        EVpnServicePolicy,              /**<
                                        * Policy.
                                        * (String - default: None)
                                        */


        EVpnIapId,                      /**<
                                        * Provided for backward compatibility. 
                                        * Use ECmNextLayerIapId instead.
                                        *
                                        * Home IAP Id.
                                        * 
                                        * Setting will reset EVpnNetworkId and
                                        * ECmNextLayerSNAPId to zero
                                        * 
                                        * (TUint32 - default: None)
                                        */

        EVpnNetworkId,                  /**<
                                        * Provided for backward compatibility. 
                                        * Use ECmNextLayerSNAPId instead.
                                        * 
                                        * Network Id. 
                                        * 
                                        * Setting will reset EVpnIapId and 
                                        * ECmNextLayerIapId to zero.
                                        * 
                                        * (TUint32 - default: None)
                                        */
                                        
        EVpnServiceEnableLLMNR,         /**<
                                        * LLMNR
                                        * (TBool - default: EFalse)
                                        */

        EPluginVpnAttribRangeMax = 39999    /**<
                                            * Marks the end of the VPN
                                            * attributes.
                                            */
        };
    } // namespace CMManager
    
#endif // VPN_PLUGIN_DEF_H