wlanutilities/wlanqtutilities/base/inc/wlanqtutilsap.h
changeset 53 bdc64aa9b954
parent 39 7b3e49e4608a
child 58 301aeb18ae47
equal deleted inserted replaced
49:fb81b597edf1 53:bdc64aa9b954
    51     
    51     
    52     // Data types
    52     // Data types
    53     
    53     
    54     /*!
    54     /*!
    55         Configuration IDs that can be read and set in this class.
    55         Configuration IDs that can be read and set in this class.
    56         Remember to update traces/trace.properties file when modifying
       
    57         this enum (tracing is also the cause for fixing the enum values).
       
    58 
    56 
    59         ConfID's available for scan results:
    57         ConfID's available for scan results:
    60         - ConfIdSsid
    58         - ConfIdSsid
    61         - ConfIdBssid
    59         - ConfIdBssid
    62         - ConfIdSignalStrength
    60         - ConfIdSignalStrength
    76         - ConfIdWepKey4     (Empty if not used)
    74         - ConfIdWepKey4     (Empty if not used)
    77         - ConfIdWepDefaultIndex
    75         - ConfIdWepDefaultIndex
    78         - ConfIdWpaPskUse
    76         - ConfIdWpaPskUse
    79         - ConfIdWpaPsk      (Empty if not used)
    77         - ConfIdWpaPsk      (Empty if not used)
    80         - ConfIdHidden
    78         - ConfIdHidden
       
    79         - ConfIdWlanScanSSID
    81     */
    80     */
    82     enum ConfId {
    81     enum ConfId {
    83         //! QString: WLAN Network Name (SSID)
    82         //! QString: WLAN Network Name (SSID)
    84         ConfIdSsid = 0,
    83         ConfIdSsid = 0,
    85         //! QByteArray: Basic Service Set Identifier
    84         //! QByteArray: Basic Service Set Identifier
   111         ConfIdWepKey3 = 9,
   110         ConfIdWepKey3 = 9,
   112         //! QString: WEP Key for index 4
   111         //! QString: WEP Key for index 4
   113         ConfIdWepKey4 = 10,
   112         ConfIdWepKey4 = 10,
   114         //! int: (CMManagerShim::WlanWepKeyIndex): Default WEP Key index
   113         //! int: (CMManagerShim::WlanWepKeyIndex): Default WEP Key index
   115         ConfIdWepDefaultIndex = 11,
   114         ConfIdWepDefaultIndex = 11,
   116         //! bool: Is WLAN hidden (CMManager::ECmHidden).
   115         //! bool: Is WLAN hidden (CMManagerShim::CmHidden).
   117         ConfIdHidden = 12,
   116         ConfIdHidden = 12,
       
   117         //! bool: Does WLAN AP need explicit scanning (CMManagerShim::WlanScanSSID)
       
   118         ConfIdWlanScanSSID = 13,
   118         //! bool: true - Wifi Protected setup is supported, false - not
   119         //! bool: true - Wifi Protected setup is supported, false - not
   119         ConfIdWpsSupported = 13
   120         ConfIdWpsSupported = 14
   120     };
   121     };
   121 
   122 
   122     /*!
   123     /*!
   123         Function pointer type for string comparison operation customization.
   124         Function pointer type for string comparison operation customization.
   124         Used for AP comparison in \a compare.
   125         Used for AP comparison in \a compare.