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.
This commit is contained in:
parent
8c0906542c
commit
7899e2f42d
9 changed files with 209 additions and 70 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue