--- a/epoc32/include/mw/cmpluginvpndef.h Tue Nov 24 13:55:44 2009 +0000
+++ b/epoc32/include/mw/cmpluginvpndef.h Tue Mar 16 16:12:26 2010 +0000
@@ -1,1 +1,90 @@
-cmpluginvpndef.h
+/*
+* 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
+* which accompanies this distribution, and is available
+* at the URL "http://www.symbianfoundation.org/legal/licencesv10.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