vpnengine/vpnins/src/vpninsexe.cpp
changeset 0 33413c0669b9
child 23 473321461bba
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vpnengine/vpnins/src/vpninsexe.cpp	Thu Dec 17 09:14:51 2009 +0200
@@ -0,0 +1,65 @@
+/*
+* Copyright (c) 2005-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: VPN Installer.
+*
+*/
+
+
+
+#include <e32base.h>
+
+    #include <centralrepository.h> // link against centralrepository.lib
+    #include <settingsinternalcrkeys.h>
+
+    #include <certificateapps.h>
+
+
+_LIT(KVpnManagementUiDllName, "vpnmanagementui.dll");
+
+LOCAL_C void setKeysAndOtherSettingsL();
+
+// The starting point
+GLDEF_C TInt E32Main()
+    {
+    __UHEAP_MARK;
+    CTrapCleanup* cleanup = CTrapCleanup::New();
+    TRAPD(error, setKeysAndOtherSettingsL());
+    if (error != KErrNone)
+        {
+        ;
+        }
+    delete cleanup;
+    __UHEAP_MARKEND;
+    return 0;
+    }
+
+ 
+LOCAL_C void setKeysAndOtherSettingsL()
+    {
+    // Connecting and initialization:
+    CRepository* repository = CRepository::NewL( KCRUidCommunicationSettings );
+    repository->Set( KSettingsVPNSupported, 1 );
+    repository->Set( KSettingsVPNImplementation, KVpnManagementUiDllName );
+    delete repository;
+
+    CCertificateAppInfoManager* manager = CCertificateAppInfoManager::NewLC();
+    
+    const TUid KUidVpn = {0x101F7993};
+    _LIT(KVpnApplicationName, "VPN");
+    TName vpnApplicationName(KVpnApplicationName);
+    TCertificateAppInfo client(KUidVpn, vpnApplicationName);
+    
+    manager->AddL(client);
+    CleanupStack::PopAndDestroy(); // manager
+    }