ipcm_pub/connection_settings_api/inc/cmpluginvpndef.h
changeset 0 5a93021fdf25
child 32 5c4486441ae6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ipcm_pub/connection_settings_api/inc/cmpluginvpndef.h	Thu Dec 17 08:55:21 2009 +0200
@@ -0,0 +1,90 @@
+/*
+* 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