remoteconn_plat/dialup_connection_status_api/inc/dundomainpskeys.h
branchRCL_3
changeset 20 4a793f564d72
parent 19 0aa8cc770c8a
child 21 74aa6861c87d
equal deleted inserted replaced
19:0aa8cc770c8a 20:4a793f564d72
     1 /*
       
     2 * Copyright (c) 2002-2006 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: 
       
    15 *     DUN Server P&S key definitions
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef DUN_DOMAIN_PS_KEYS_H
       
    21 #define DUN_DOMAIN_PS_KEYS_H
       
    22 
       
    23 /**
       
    24 * PubSub Uid of dialup connection status
       
    25 */
       
    26 const TUid KPSUidDialupConnStatus = {0x0100387d};  // UID of DUN server
       
    27 
       
    28 /**
       
    29 * Dialup connection status
       
    30 *
       
    31 * Possible integer values:
       
    32 * 0 (EDunUndefined)  Value is not set
       
    33 * 1 (EDunInactive)   Dun is inactive  (no listening or active plugins)
       
    34 * 2 (EDunActive)     Dun is active    (at least one active plugin)
       
    35 */
       
    36 
       
    37 const TUint KDialupConnStatus = 0x00000001;
       
    38 
       
    39 // Enumeration for DUN connection status
       
    40 enum TDialupConnStatus
       
    41     {
       
    42     EDialupUndefined,
       
    43     EDialupInactive,
       
    44     EDialupActive
       
    45     };
       
    46 
       
    47 #endif // DUN_DOMAIN_PS_KEYS_H