ipcm_pub/connection_settings_api/inc/cmgenconnsettings.h
changeset 0 5a93021fdf25
child 2 086aae6fc07e
equal deleted inserted replaced
-1:000000000000 0:5a93021fdf25
       
     1 /*
       
     2 * Copyright (c) 2009 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:  General connectivity settings.
       
    15 *
       
    16 */
       
    17 #ifndef CMGENCONNSETTINGS_H
       
    18 #define CMGENCONNSETTINGS_H
       
    19 
       
    20 
       
    21 // Usage types for new WLAN
       
    22 enum TCmUsageOfWlan
       
    23     {
       
    24     ECmUsageOfWlanKnown,
       
    25     ECmUsageOfWlanKnownAndNew, // default 
       
    26     ECmUsageOfWlanManual   
       
    27     };
       
    28 
       
    29 // Seamlessness values
       
    30 enum TCmSeamlessnessValue
       
    31         {
       
    32         ECmSeamlessnessNotRoamedTo,   // IAP can be used in start, but not roamed to unless already active
       
    33         ECmSeamlessnessConfirmFirst,  // Confirm first
       
    34         ECmSeamlessnessShowprogress,  // Show progress
       
    35         ECmSeamlessnessFullySeamless, // Same as previous
       
    36         ECmSeamlessnessDisabled       // IAP blacklisted and not used at all
       
    37         };
       
    38 
       
    39 // Table for connection settings other than default connection
       
    40 struct TCmGenConnSettings
       
    41     {
       
    42     TCmUsageOfWlan         iUsageOfWlan;
       
    43     TCmSeamlessnessValue   iSeamlessnessHome;
       
    44     TCmSeamlessnessValue   iSeamlessnessVisitor;
       
    45     };
       
    46 
       
    47 #endif
       
    48