epoc32/include/mw/cmpluginvpndef.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h) This is the epoc32/include tree with the "platform" subtrees removed, and all but a selected few mbg and rsg files removed.

/*
* 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,  /**<
                                        * Policy name.
                                        * (String - default: None)
                                        */
                                        
        EVpnServicePolicy,              /**<
                                        * Policy.
                                        * (String - default: None)
                                        */


        EVpnIapId,                      /**<
                                        * Home IAP Id.
                                        * (TUint32 - default: None)
                                        */

        EVpnNetworkId,                  /**<
                                        * Network Id.
                                        * (TUint32 - default: None - read only)
                                        */
                                        
        EVpnServiceEnableLLMNR,         /**<
                                        * LLMNR
                                        * (TBool - default: EFalse)
                                        */

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