Fields Summary |
---|
private static final String | TAG |
private static final int | CONNECTEDEvents we receive from the supplicant daemon |
private static final int | DISCONNECTED |
private static final int | STATE_CHANGE |
private static final int | SCAN_RESULTS |
private static final int | LINK_SPEED |
private static final int | TERMINATING |
private static final int | DRIVER_STATE |
private static final int | UNKNOWN |
private static final String | eventPrefixAll events coming from the supplicant start with this prefix |
private static final int | eventPrefixLen |
private static final String | wpaEventPrefixAll WPA events coming from the supplicant start with this prefix |
private static final String | passwordKeyMayBeIncorrectEvent |
private static final String | connectedEvent
CTRL-EVENT-CONNECTED - Connection to xx:xx:xx:xx:xx:xx completed
xx:xx:xx:xx:xx:xx is the BSSID of the associated access point |
private static final String | disconnectedEvent
CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
|
private static final String | stateChangeEvent
CTRL-EVENT-STATE-CHANGE x
x is the numerical value of the new state. |
private static final String | scanResultsEvent
CTRL-EVENT-SCAN-RESULTS ready
|
private static final String | linkSpeedEvent
CTRL-EVENT-LINK-SPEED x Mb/s
{@code x} is the link speed in Mb/sec. |
private static final String | terminatingEvent
CTRL-EVENT-TERMINATING - signal x
x is the signal that caused termination. |
private static final String | driverStateEvent
CTRL-EVENT-DRIVER-STATE state
state is either STARTED or STOPPED |
private static Pattern | mConnectedEventPatternRegex pattern for extracting an Ethernet-style MAC address from a string.
Matches a strings like the following:
CTRL-EVENT-CONNECTED - Connection to 00:1e:58:ec:d5:6d completed (reauth) [id=1 id_str=] |
private final WifiStateTracker | mWifiStateTracker |