diff -r 473321461bba -r e06095241a65 vpnengine/vpnextapi/src/vpnextapi.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vpnengine/vpnextapi/src/vpnextapi.cpp Wed Sep 01 12:23:21 2010 +0100 @@ -0,0 +1,68 @@ +/* +* Copyright (c) 2010 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 Ext API +* +*/ + + +#include "vpnextapi.h" +#include "vpnextapiservantdefs.h" +#include "vpnmanagerserverdefs.h" + +EXPORT_C RVpnExtApi::RVpnExtApi() : RVpnServ() + { + } + + +EXPORT_C TInt RVpnExtApi::CreateServer( const TAgileProvisionApiServerSettings& aServerDetails ) + { + TPckg serverCreatePckg(aServerDetails); + return SendReceive(EExtCreateProvisionServer, TIpcArgs(&serverCreatePckg)); + } + + +EXPORT_C TInt RVpnExtApi::ServerDetails( TAgileProvisionApiServerSettings& aServerDetails ) + { + TPckg serverPckg( aServerDetails ); + + return SendReceive(EExtVPNPolicyServerDetails, TIpcArgs(&serverPckg)); + } + +EXPORT_C TInt RVpnExtApi::DeleteServer( ) + { + return SendReceive(EExtDeletePolicyServer); + } + +EXPORT_C TInt RVpnExtApi::ServerListL( TAgileProvisionApiServerListElem& aVpnPolicyServerList ) + { + TPckg serverPckg( aVpnPolicyServerList ); + return SendReceive(EExtVPNPolicyServerList, TIpcArgs(&serverPckg)); + } + +EXPORT_C void RVpnExtApi::SynchronizePolicyServer( TRequestStatus& aStatus ) + { + SendReceive(EExtSynchronizePolicyServer, aStatus); + } + +EXPORT_C TInt RVpnExtApi::CancelPolicyProvision( ) + { + return SendReceive(EExtCancelSynchronize); + } + +EXPORT_C TInt RVpnExtApi::GetPolicyName(TAgileProvisionPolicy& aVpnPolicyName) + { + TPckg serverPckg( aVpnPolicyName ); + return SendReceive(EExtGetPolicyName, TIpcArgs(&serverPckg)); + } +