diff options
Diffstat (limited to 'wifi/java/android/net/wifi/WifiInfo.java')
-rw-r--r-- | wifi/java/android/net/wifi/WifiInfo.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/wifi/java/android/net/wifi/WifiInfo.java b/wifi/java/android/net/wifi/WifiInfo.java index 476ef979f5a9..a367b2310721 100644 --- a/wifi/java/android/net/wifi/WifiInfo.java +++ b/wifi/java/android/net/wifi/WifiInfo.java @@ -346,7 +346,8 @@ public class WifiInfo implements Parcelable { * Returns the service set identifier (SSID) of the current 802.11 network. * If the SSID can be decoded as UTF-8, it will be returned surrounded by double * quotation marks. Otherwise, it is returned as a string of hex digits. The - * SSID may be <unknown ssid> if there is no network currently connected. + * SSID may be <unknown ssid> if there is no network currently connected, + * or if the caller has insufficient permissions to access the SSID. * @return the SSID */ public String getSSID() { @@ -485,7 +486,13 @@ public class WifiInfo implements Parcelable { return mMacAddress != null && !DEFAULT_MAC_ADDRESS.equals(mMacAddress); } - /** {@hide} */ + /** + * Indicates if we've dynamically detected this active network connection as + * being metered. + * + * @see WifiConfiguration#isMetered(WifiConfiguration, WifiInfo) + * @hide + */ public void setMeteredHint(boolean meteredHint) { mMeteredHint = meteredHint; } |