wlanutilities/wlanqtutilities/stubs/wlanmgmtclient.h
changeset 56 de27cc8389dd
parent 46 2fbd1d709fe7
equal deleted inserted replaced
50:d4198dcb9983 56:de27cc8389dd
    69         
    69         
    70         /**
    70         /**
    71          * Cancel an outstanding scan request.
    71          * Cancel an outstanding scan request.
    72          */
    72          */
    73         void CancelGetScanResults();
    73         void CancelGetScanResults();
       
    74 
       
    75         /**
       
    76          * Get the available WLAN IAPs.
       
    77          *
       
    78          * @param aCacheLifetime Defines how many seconds old cached results the client
       
    79          *                       is willing to accept. The valid is range is from 0 to
       
    80          *                       60 seconds. The value of -1 means the system default will
       
    81          *                       be used. The aCacheLifetime parameter has a meaning only
       
    82          *                       when the aMaxDelay parameter is zero.
       
    83          *                       Value will be changed to the actual value used by the
       
    84          *                       system.
       
    85          * @param aMaxDelay Maximum amount of seconds the client is willing to wait for
       
    86          *                  the availability results. The valid range is from 0 to 1200
       
    87          *                  seconds or KWlanInfiniteScanDelay. KWlanInfiniteScanDelay
       
    88          *                  will never cause a scan, but the request will be
       
    89          *                  completed when any other broadcast scan request is completed.
       
    90          *                  Value will be changed to the actual value used by the system.
       
    91          * @param aFilteredResults Whether availability is filtered based on signal strength.
       
    92          *                  ETrue if filtering is allowed, EFalse if not.
       
    93          * @param aStatus Status of the calling active object. On successful
       
    94          *                completion contains KErrNone, otherwise one of the
       
    95          *                system-wide error codes.
       
    96          * @param aAvailableIaps Array of IAPs available.
       
    97          */
       
    98         void GetAvailableIaps(
       
    99             TInt& aCacheLifetime,
       
   100             TUint& aMaxDelay,
       
   101             TBool aFilteredResults,
       
   102             TRequestStatus& aStatus,
       
   103             RArray<TWlanIapAvailabilityData>& aAvailableIaps );
       
   104 
       
   105         /**
       
   106          * Cancel an outstanding IAP availability request.
       
   107          */
       
   108         void CancelGetAvailableIaps();
    74         
   109         
    75     private: // Data
   110     private: // Data
    76         
   111         
    77         CWlanMgmtClient();
   112         CWlanMgmtClient();
    78     };
   113     };