vpnengine/vpnconnagt/inc/vpnconnagtprog.h
changeset 0 33413c0669b9
equal deleted inserted replaced
-1:000000000000 0:33413c0669b9
       
     1 /*
       
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: VPN Connection Agent progresses.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 /**  
       
    21  @file
       
    22  @released
       
    23  @publishedPartner
       
    24  
       
    25  VPN Connection Agent progress parameter declaration.
       
    26  */
       
    27 
       
    28 #if !defined __VPNCONNAGTPROG_H__
       
    29 #define __VPNCONNAGTPROG_H__
       
    30 
       
    31 // INCLUDES
       
    32 #include <nifvar.h>
       
    33 #include <comms-infras/cagentbase.h>
       
    34 
       
    35 /**
       
    36  * Defines progresses sent to Nifman.
       
    37  */
       
    38 enum TVPNConnAgtProgress
       
    39     {
       
    40     EVPNConnAgtIdle             = KMinAgtProgress,
       
    41     EVPNConnAgtConnecting,
       
    42     EVPNConnAgtConnected        = KConnectionOpen,
       
    43     EVPNConnAgtDisconnecting    = KConnectionStartingClose,
       
    44     EVPNConnAgtDisconnected     = KConnectionClosed
       
    45     };
       
    46 
       
    47 #endif // VPNCONNAGTPROG_H