hsfw_plat/internet_connectivity_test_service_settings_api/inc/internetconnectivitycrkeys.h
changeset 0 56b72877c1cb
equal deleted inserted replaced
-1:000000000000 0:56b72877c1cb
       
     1 /*
       
     2 * Copyright (c) 2006-2007 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:  Key values for testing internet connectivity
       
    15 *   
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef INTERNETCONNECTIVITYCRKEYS_H
       
    21 #define INTERNETCONNECTIVITYCRKEYS_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32cmn.h>
       
    25 
       
    26 /**
       
    27 * Internet Connectivity Test Service settings
       
    28 */
       
    29 const TUid KCRUidInternetConnectivitySettings = {0x10282EC7};
       
    30 
       
    31 /**
       
    32 * CenRep key for storing test server IP address
       
    33 *
       
    34 * Text
       
    35 *
       
    36 * Default value: "http://connectivity-test.ext.nokia.com/"
       
    37 */
       
    38 const TUint32 KIctsIpDestination = 0x00000001;
       
    39 
       
    40 /**
       
    41 * CenRep key for internet connectivity test permission
       
    42 *
       
    43 * Integer
       
    44 *
       
    45 * Run automatically:    0
       
    46 * Never run:            1 
       
    47 *
       
    48 * Default value:        0
       
    49 */
       
    50 const TUint32 KIctsTestPermission = 0x00000002;
       
    51 
       
    52 // Values for internet connectivity testing permission
       
    53 enum TIctsTestPermission
       
    54     {
       
    55     // Run automatically. No permission asked.
       
    56     EIctsRunAutomatically = 0,
       
    57     // Do not run internet connectivity test at all.
       
    58     EIctsNeverRun
       
    59     };
       
    60 
       
    61 #endif // INTERNETCONNECTIVITYCRKEYS_H
       
    62      
       
    63 
       
    64 //  End of File