diff options
author | Witold Sowa <witold.sowa@gmail.com> | 2010-01-01 12:28:24 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2010-01-01 12:28:24 +0200 |
commit | 58605c6e61ad5020de60fa85424e0cd9b376db72 (patch) | |
tree | ef78f74f2f825dd061e14e424ce7e28a00170699 /doc | |
parent | 21e210fc99137c06d6bb296138d13f75650d81a7 (diff) | |
download | external_wpa_supplicant_8_ti-58605c6e61ad5020de60fa85424e0cd9b376db72.zip external_wpa_supplicant_8_ti-58605c6e61ad5020de60fa85424e0cd9b376db72.tar.gz external_wpa_supplicant_8_ti-58605c6e61ad5020de60fa85424e0cd9b376db72.tar.bz2 |
dbus: Replace BSS 'Properties' property with separate properties
In addition, remove Quality and Noise properties since the BSS table
is not the correct place for fetching per-channel information (Noise)
and Quality is not well-defined (nor available from many drivers).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dbus.doxygen | 54 |
1 files changed, 38 insertions, 16 deletions
diff --git a/doc/dbus.doxygen b/doc/dbus.doxygen index 88d2cf4..04bdf5a 100644 --- a/doc/dbus.doxygen +++ b/doc/dbus.doxygen @@ -600,22 +600,44 @@ scan results. <ul> <li> - <h3>Properties - a{sv} - (read)</h3> - <p>Properties of scanned BSS. Dictionary contains following entries:</p> - <table> - <tr><th>Key</th><th>Value type</th> - <tr><td>BSSID</td><td>ay</td> - <tr><td>SSID</td><td>ay</td> - <tr><td>WPAIE</td><td>ay</td> - <tr><td>RSNIE</td><td>ay</td> - <tr><td>WPSIE</td><td>ay</td> - <tr><td>Frequency</td><td>i</td> - <tr><td>Capabilities</td><td>q</td> - <tr><td>Quality</td><td>i</td> - <tr><td>Noise</td><td>i</td> - <tr><td>Level</td><td>i</td> - <tr><td>MaxRate</td><td>i</td> - </table> + <h3>BSSID - ay - (read)</h3> + <p>BSSID of the BSS.</p> + </li> + <li> + <h3>SSID - ay - (read)</h3> + <p>SSID of the BSS.</p> + </li> + <li> + <h3>WPAIE - ay - (read)</h3> + <p>WPA information element of the BSS. The second byte contain number of bytes following it.</p> + </li> + <li> + <h3>RSNIE - ay - (read)</h3> + <p>RSN information element of the BSS. The second byte contain number of bytes following it.</p> + </li> + <li> + <h3>WPSIE - ay - (read)</h3> + <p>WPS information element of the BSS. The second byte contain number of bytes following it.</p> + </li> + <li> + <h3>Privacy - b - (read)</h3> + <p>Indicates if BSS supports privacy.</p> + </li> + <li> + <h3>Mode - s - (read)</h3> + <p>Describes mode of the BSS. Possible values are: "ad-hoc" and "infrastructure".</p> + </li> + <li> + <h3>Frequency - q - (read)</h3> + <p>Frequency of the BSS in MHz.</p> + </li> + <li> + <h3>MaxRate - q - (read)</h3> + <p>Maximal data rate of the BSS in bits per second.</p> + </li> + <li> + <h3>Signal - n - (read)</h3> + <p>Signal strength of the BSS.</p> </li> </ul> |