diff options
author | Witold Sowa <witold.sowa@gmail.com> | 2010-01-16 16:37:37 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2010-01-16 16:37:37 +0200 |
commit | 7899e2f42d91336393ec464fc85b57bd9e1cf1d5 (patch) | |
tree | 8052fb48e55efc24d56f0d87b60cf27e3eaaee40 /doc | |
parent | 8c0906542c06d862ffae10e2984330b28ed505a6 (diff) | |
download | external_wpa_supplicant_8_ti-7899e2f42d91336393ec464fc85b57bd9e1cf1d5.zip external_wpa_supplicant_8_ti-7899e2f42d91336393ec464fc85b57bd9e1cf1d5.tar.gz external_wpa_supplicant_8_ti-7899e2f42d91336393ec464fc85b57bd9e1cf1d5.tar.bz2 |
dbus: Change WPA/RSNIE byte array props to dicts
Expose RSN and WPA properties for BSS objects containing information
about key management and cipher suites. Get rid of WPA/RSN/WPSIE
byte array properties and add IEs byte array property with all IE data
instead.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dbus.doxygen | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/doc/dbus.doxygen b/doc/dbus.doxygen index f1206c7..17a3d50 100644 --- a/doc/dbus.doxygen +++ b/doc/dbus.doxygen @@ -620,16 +620,27 @@ scan results. <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> + <h3>WPA - a{sv} - (read)</h3> + <p>WPA information of the BSS. Empty dictionary indicates no WPA support. Dictionary entries are:</p> + <table> + <tr><td>KeyMgmt</td><td>as</td><td>Key management suite. Possible array elements: "wpa-psk", "wpa-eap", "wpa-none"</td> + <tr><td>Pairwise</td><td>as</td><td>Pairwise cipher suites. Possible array elements: "ccmp", "tkip"</td> + <tr><td>Group</td><td>s</td><td>Group cipher suite. Possible values are: "ccmp", "tkip", "wep104", "wep40"</td> + </table> </li> <li> - <h3>RSNIE - ay - (read)</h3> - <p>RSN information element of the BSS. The second byte contain number of bytes following it.</p> + <h3>RSN - a{sv} - (read)</h3> + <p>RSN information of the BSS. Empty dictionary indicates no RSN support. Dictionary entries are:</p> + <table> + <tr><td>KeyMgmt</td><td>as</td><td>Key management suite. Possible array elements: "wpa-psk", "wpa-eap", "wpa-ft-psk", "wpa-ft-eap", "wpa-psk-sha256", "wpa-eap-sha256",</td> + <tr><td>Pairwise</td><td>as</td><td>Pairwise cipher suites. Possible array elements: "ccmp", "tkip"</td> + <tr><td>Group</td><td>s</td><td>Group cipher suite. Possible values are: "ccmp", "tkip", "wep104", "wep40"</td> + <tr><td>MgmtGroup</td><td>s</td><td>Mangement frames cipher suite. Possible values are: "aes128cmac"</td> + </table> </li> <li> - <h3>WPSIE - ay - (read)</h3> - <p>WPS information element of the BSS. The second byte contain number of bytes following it.</p> + <h3>IEs - ay - (read)</h3> + <p>All IEs of the BSS as a chain of TLVs</p> </li> <li> <h3>Privacy - b - (read)</h3> |