dbus.doxygen 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  1. /**
  2. \page dbus %wpa_supplicant D-Bus API
  3. This section documents the %wpa_supplicant D-Bus API. Every D-Bus
  4. interface implemented by %wpa_supplicant is described here including
  5. their methods, signals, and properties with arguments, returned
  6. values, and possible errors.
  7. Interfaces:
  8. - \ref dbus_main
  9. - \ref dbus_interface
  10. - \ref dbus_wps
  11. - \ref dbus_bss
  12. - \ref dbus_network
  13. \section dbus_main fi.w1.wpa_supplicant1
  14. Interface implemented by the main %wpa_supplicant D-Bus object
  15. registered in the bus with fi.w1.wpa_supplicant1 name.
  16. \subsection dbus_main_methods Methods
  17. <ul>
  18. <li>
  19. <h3>CreateInterface ( a{sv} : args ) --> o : interface</h3>
  20. <p>Registers a wireless interface in %wpa_supplicant.</p>
  21. <h4>Arguments</h4>
  22. <dl>
  23. <dt>a{sv} : args</dt>
  24. <dd>
  25. A dictionary with arguments used to add the interface to %wpa_supplicant. The dictionary may contain the following entries:
  26. <table>
  27. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  28. <tr><td>Ifname</td><td>s</td><td>Name of the network interface to control, e.g., wlan0</td><td>Yes</td>
  29. <tr><td>Bridge_ifname</td><td>s</td><td>Name of the bridge interface to control, e.g., br0</td><td>No</td>
  30. <tr><td>Driver</td><td>s</td><td>Driver name which the interface uses, e.g., nl80211</td><td>No</td>
  31. </table>
  32. </dd>
  33. </dl>
  34. <h4>Returns</h4>
  35. <dl>
  36. <dt>o : interface</dt>
  37. <dd>A D-Bus path to object representing created interface</dd>
  38. </dl>
  39. <h4>Possible errors</h4>
  40. <dl>
  41. <dt>fi.w1.wpa_supplicant1.InterfaceExists</dt>
  42. <dd>%wpa_supplicant already controls this interface.</dd>
  43. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  44. <dd>Creating interface failed for an unknown reason.</dd>
  45. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  46. <dd>Invalid entries were found in the passed argument.</dd>
  47. </dl>
  48. </li>
  49. <li>
  50. <h3>RemoveInterface ( o : interface ) --> nothing</h3>
  51. <p>Deregisters a wireless interface from %wpa_supplicant.</p>
  52. <h4>Arguments</h4>
  53. <dl>
  54. <dt>o : interface</dt>
  55. <dd>A D-Bus path to an object representing an interface to remove returned by CreateInterface</dd>
  56. </dl>
  57. <h4>Possible errors</h4>
  58. <dl>
  59. <dt>fi.w1.wpa_supplicant1.InterfaceUnknown</dt>
  60. <dd>Object pointed by the path doesn't exist or doesn't represent an interface.</dd>
  61. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  62. <dd>Removing interface failed for an unknown reason.</dd>
  63. </dl>
  64. </li>
  65. <li>
  66. <h3>GetInterface ( s : ifname ) --> o : interface</h3>
  67. <p>Returns a D-Bus path to an object related to an interface which %wpa_supplicant already controls.</p>
  68. <h4>Arguments</h4>
  69. <dl>
  70. <dt>s : ifname</dt>
  71. <dd>Name of the network interface, e.g., wlan0</dd>
  72. </dl>
  73. <h4>Returns</h4>
  74. <dl>
  75. <dt>o : interface</dt>
  76. <dd>A D-Bus path to an object representing an interface</dd>
  77. </dl>
  78. <h4>Possible errors</h4>
  79. <dl>
  80. <dt>fi.w1.wpa_supplicant1.InterfaceUnknown</dt>
  81. <dd>An interface with the passed name in not controlled by %wpa_supplicant.</dd>
  82. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  83. <dd>Getting an interface object path failed for an unknown reason.</dd>
  84. </dl>
  85. </li>
  86. </ul>
  87. \subsection dbus_main_properties Properties
  88. <ul>
  89. <li>
  90. <h3>DebugParams - (ibb) - (read/write)</h3>
  91. <p>A structure describing debugging properties. The structure elements are (in order): debug level (i), show timestamps (b), show keys (b).</p>
  92. </li>
  93. <li>
  94. <h3>Interfaces - ao - (read)</h3>
  95. <p>An array with paths to D-Bus objects representing controlled interfaces each.</p>
  96. </li>
  97. <li>
  98. <h3>EapMethods - as - (read)</h3>
  99. <p>An array with supported EAP methods names.</p>
  100. </li>
  101. </ul>
  102. \subsection dbus_main_signals Signals
  103. <ul>
  104. <li>
  105. <h3>InterfaceAdded ( o : interface, a{sv} : properties )</h3>
  106. <p>A new interface was added to %wpa_supplicant.</p>
  107. <h4>Arguments</h4>
  108. <dl>
  109. <dt>o : interface</dt>
  110. <dd>A D-Bus path to an object representing the added interface</dd>
  111. </dl>
  112. <dl>
  113. <dt>a{sv} : properties</dt>
  114. <dd>A dictionary containing properties of added interface.</dd>
  115. </dl>
  116. </li>
  117. <li>
  118. <h3>InterfaceRemoved ( o : interface )</h3>
  119. <p>An interface was removed from %wpa_supplicant.</p>
  120. <h4>Arguments</h4>
  121. <dl>
  122. <dt>o : interface</dt>
  123. <dd>A D-Bus path to an object representing the removed interface</dd>
  124. </dl>
  125. </li>
  126. <li>
  127. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  128. <p>Some properties have changed.</p>
  129. <h4>Arguments</h4>
  130. <dl>
  131. <dt>a{sv} : properties</dt>
  132. <dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible dictionary keys are: "DebugParams"</dd>
  133. </dl>
  134. </li>
  135. </ul>
  136. \section dbus_interface fi.w1.wpa_supplicant1.Interface
  137. Interface implemented by objects related to network interface added to
  138. %wpa_supplicant, i.e., returned by
  139. fi.w1.wpa_supplicant1.CreateInterface.
  140. \subsection dbus_interface_methods Methods
  141. <ul>
  142. <li>
  143. <h3>Scan ( a{sv} : args ) --> nothing</h3>
  144. <p>Triggers a scan.</p>
  145. <h4>Arguments</h4>
  146. <dl>
  147. <dt>a{sv} : args</dt>
  148. <dd>
  149. A dictionary with arguments describing scan type:
  150. <table>
  151. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  152. <tr><td>Type</td><td>s</td><td>Type of the scan. Possible values: "active", "passive"</td><td>Yes</td>
  153. <tr><td>SSIDs</td><td>aay</td><td>Array of SSIDs to scan for (applies only if scan type is active)</td><td>No</td>
  154. <tr><td>IEs</td><td>aay</td><td>Information elements to used in active scan (applies only if scan type is active)</td><td>No</td>
  155. <tr><td>Channels</td><td>a(uu)</td><td>Array of frequencies to scan in form of (center, width) in MHz.</td><td>No</td>
  156. </table>
  157. </dd>
  158. </dl>
  159. <h4>Possible errors</h4>
  160. <dl>
  161. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  162. <dd>Invalid entries were found in the passed argument.</dd>
  163. </dl>
  164. </li>
  165. <li>
  166. <h3>Disconnect ( ) --> nothing</h3>
  167. <p>Disassociates the interface from current network.</p>
  168. <h4>Possible errors</h4>
  169. <dl>
  170. <dt>fi.w1.wpa_supplicant1.Interface.NotConnected</dt>
  171. <dd>Interface is not connected to any network.</dd>
  172. </dl>
  173. </li>
  174. <li>
  175. <h3>AddNetwork ( a{sv} : args ) --> o : network</h3>
  176. <p>Adds a new network to the interface.</p>
  177. <h4>Arguments</h4>
  178. <dl>
  179. <dt>a{sv} : args</dt>
  180. <dd>A dictionary with network configuration. Dictionary entries are equivalent to entries in the "network" block in %wpa_supplicant configuration file. Entry values should be appropriate type to the entry, e.g., an entry with key "frequency" should have value type int.</dd>
  181. </dl>
  182. <h4>Returns</h4>
  183. <dl>
  184. <dt>o : network</dt>
  185. <dd>A D-Bus path to an object representing a configured network</dd>
  186. </dl>
  187. <h4>Possible errors</h4>
  188. <dl>
  189. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  190. <dd>Invalid entries were found in the passed argument.</dd>
  191. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  192. <dd>Adding network failed for an unknown reason.</dd>
  193. </dl>
  194. </li>
  195. <li>
  196. <h3>RemoveNetwork ( o : network ) --> nothing</h3>
  197. <p>Removes a configured network from the interface.</p>
  198. <h4>Arguments</h4>
  199. <dl>
  200. <dt>o : network</dt>
  201. <dd>A D-Bus path to an object representing a configured network returned by fi.w1.wpa_supplicant1.Interface.AddNetwork</dd>
  202. </dl>
  203. <h4>Possible errors</h4>
  204. <dl>
  205. <dt>fi.w1.wpa_supplicant1.Interface.NetworkUnknown</dt>
  206. <dd>A passed path doesn't point to any network object.</dd>
  207. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  208. <dd>A passed path doesn't point to any network object.</dd>
  209. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  210. <dd>Removing network failed for an unknown reason.</dd>
  211. </dl>
  212. </li>
  213. <li>
  214. <h3>SelectNetwork ( o : network ) --> nothing</h3>
  215. <p>Attempt association with a configured network.</p>
  216. <h4>Arguments</h4>
  217. <dl>
  218. <dt>o : network</dt>
  219. <dd>A D-Bus path to an object representing a configured network returned by fi.w1.wpa_supplicant1.Interface.AddNetwork</dd>
  220. </dl>
  221. <h4>Possible errors</h4>
  222. <dl>
  223. <dt>fi.w1.wpa_supplicant1.Interface.NetworkUnknown</dt>
  224. <dd>A passed path doesn't point to any network object.</dd>
  225. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  226. <dd>A passed path doesn't point to any network object.</dd>
  227. </dl>
  228. </li>
  229. <li>
  230. <h3>AddBlob ( s : name, ay : data ) --> nothing</h3>
  231. <p>Adds a blob to the interface.</p>
  232. <h4>Arguments</h4>
  233. <dl>
  234. <dt>s : name</dt>
  235. <dd>A name of a blob</dd>
  236. <dt>ay : data</dt>
  237. <dd>A blob data</dd>
  238. </dl>
  239. <h4>Possible errors</h4>
  240. <dl>
  241. <dt>fi.w1.wpa_supplicant1.Interface.BlobExists</dt>
  242. <dd>A blob with the specified name already exists.</dd>
  243. </dl>
  244. </li>
  245. <li>
  246. <h3>RemoveBlob ( s : name ) --> nothing</h3>
  247. <p>Removes the blob from the interface.</p>
  248. <h4>Arguments</h4>
  249. <dl>
  250. <dt>s : name</dt>
  251. <dd>A name of the blob to remove</dd>
  252. </dl>
  253. <h4>Possible errors</h4>
  254. <dl>
  255. <dt>fi.w1.wpa_supplicant1.Interface.BlobUnknown</dt>
  256. <dd>A blob with the specified name doesn't exist.</dd>
  257. </dl>
  258. </li>
  259. <li>
  260. <h3>GetBlob ( s : name ) --> ay : data</h3>
  261. <p>Returns the blob data of a previously added blob.</p>
  262. <h4>Arguments</h4>
  263. <dl>
  264. <dt>s : name</dt>
  265. <dd>A name of the blob</dd>
  266. </dl>
  267. <h4>Returns</h4>
  268. <dl>
  269. <dt>ay : data</dt>
  270. <dd>A blob data</dd>
  271. </dl>
  272. <h4>Possible errors</h4>
  273. <dl>
  274. <dt>fi.w1.wpa_supplicant1.Interface.BlobUnknown</dt>
  275. <dd>A blob with the specified name doesn't exist.</dd>
  276. </dl>
  277. </li>
  278. </ul>
  279. \subsection dbus_interface_properties Properties
  280. <ul>
  281. <li>
  282. <h3>Capabilities - a{sv} - (read)</h3>
  283. <p>Capabilities of the interface. Dictionary contains following entries:</p>
  284. <table>
  285. <tr><th>Key</th><th>Value type</th><th>Description</th>
  286. <tr><td>Pairwise</td><td>as</td><td>Possible array elements: "ccmp", "tkip", "none"</td>
  287. <tr><td>Group</td><td>as</td><td>Possible array elements: "ccmp", "tkip", "wep104", "wep40"</td>
  288. <tr><td>KeyMgmt</td><td>as</td><td>Possible array elements: "wpa-psk", "wpa-eap", "ieee8021x", "wpa-none", "wps", "none"</td>
  289. <tr><td>Protocol</td><td>as</td><td>Possible array elements: "rsn", "wpa"</td>
  290. <tr><td>AuthAlg</td><td>as</td><td>Possible array elements: "open", "shared", "leap"</td>
  291. <tr><td>Scan</td><td>as</td><td>Possible array elements: "active", "passive", "ssid"</td>
  292. <tr><td>Modes</td><td>as</td><td>Possible array elements: "infrastructure", "ad-hoc", "ap"</td>
  293. </table>
  294. </li>
  295. <li>
  296. <h3>State - s - (read)</h3>
  297. <p>A state of the interface. Possible values are: return "disconnected", "inactive", "scanning", "authenticating", "associating", "associated", "4way_handshake", "group_handshake", "completed","unknown".</p>
  298. </li>
  299. <li>
  300. <h3>Scanning - b - (read)</h3>
  301. <p>Determines if the interface is already scanning or not</p>
  302. </li>
  303. <li>
  304. <h3>ApScan - u - (read/write)</h3>
  305. <p>Identical to ap_scan entry in %wpa_supplicant configuration file. Possible values are 0, 1 or 2.</p>
  306. </li>
  307. <li>
  308. <h3>Ifname - s - (read)</h3>
  309. <p>Name of network interface controlled by the interface, e.g., wlan0.</p>
  310. </li>
  311. <li>
  312. <h3>BridgeIfname - s - (read)</h3>
  313. <p>Name of bridge network interface controlled by the interface, e.g., br0.</p>
  314. </li>
  315. <li>
  316. <h3>Driver - s - (read)</h3>
  317. <p>Name of driver used by the interface, e.g., nl80211.</p>
  318. </li>
  319. <li>
  320. <h3>CurrentBSS - o - (read)</h3>
  321. <p>Path to D-Bus object representing BSS which %wpa_supplicant is associated with, or "/" if is not associated at all.</p>
  322. </li>
  323. <li>
  324. <h3>CurrentNetwork - o - (read)</h3>
  325. <p>Path to D-Bus object representing configured network which %wpa_supplicant uses at the moment, or "/" if doesn't use any.</p>
  326. </li>
  327. <li>
  328. <h3>Blobs - as - (read)</h3>
  329. <p>List of blobs names added to the Interface.</p>
  330. </li>
  331. <li>
  332. <h3>BSSs - ao - (read)</h3>
  333. <p>List of D-Bus objects paths representing BSSs known to the interface, i.e., scan results.</p>
  334. </li>
  335. <li>
  336. <h3>Networks - ao - (read)</h3>
  337. <p>List of D-Bus objects paths representing configured networks.</p>
  338. </li>
  339. </ul>
  340. \subsection dbus_interface_signals Signals
  341. <ul>
  342. <li>
  343. <h3>ScanDone ( b : success )</h3>
  344. <p>Scanning finished. </p>
  345. <h4>Arguments</h4>
  346. <dl>
  347. <dt>s : success</dt>
  348. <dd>Determines if scanning was successful. If so, results are available.</dd>
  349. </dl>
  350. </li>
  351. <li>
  352. <h3>StateChanged ( s : newState, s : oldState )</h3>
  353. <p>Interface state has changed.</p>
  354. <h4>Arguments</h4>
  355. <dl>
  356. <dt>s : newState</dt>
  357. <dd>A state which the interface goes to</dd>
  358. <dt>s : oldState</dt>
  359. <dd>A state which the interface goes from</dd>
  360. </dl>
  361. </li>
  362. <li>
  363. <h3>BSSAdded ( o : BSS, a{sv} : properties )</h3>
  364. <p>Interface became aware of a new BSS.</p>
  365. <h4>Arguments</h4>
  366. <dl>
  367. <dt>o : BSS</dt>
  368. <dd>A D-Bus path to an object representing the new BSS.</dd>
  369. </dl>
  370. <dl>
  371. <dt>a{sv} : properties</dt>
  372. <dd>A dictionary containing properties of added BSS.</dd>
  373. </dl>
  374. </li>
  375. <li>
  376. <h3>BSSRemoved ( o : BSS )</h3>
  377. <p>BSS disappeared.</p>
  378. <h4>Arguments</h4>
  379. <dl>
  380. <dt>o : BSS</dt>
  381. <dd>A D-Bus path to an object representing the BSS.</dd>
  382. </dl>
  383. </li>
  384. <li>
  385. <h3>BlobAdded ( s : blobName )</h3>
  386. <p>A new blob has been added to the interface.</p>
  387. <h4>Arguments</h4>
  388. <dl>
  389. <dt>s : blobName</dt>
  390. <dd>A name of the added blob.</dd>
  391. </dl>
  392. </li>
  393. <li>
  394. <h3>BlobRemoved ( s : blobName )</h3>
  395. <p>A blob has been removed from the interface.</p>
  396. <h4>Arguments</h4>
  397. <dl>
  398. <dt>s : blobName</dt>
  399. <dd>A name of the removed blob.</dd>
  400. </dl>
  401. </li>
  402. <li>
  403. <h3>NetworkAdded ( o : network, a{sv} : properties )</h3>
  404. <p>A new network has been added to the interface.</p>
  405. <h4>Arguments</h4>
  406. <dl>
  407. <dt>o : network</dt>
  408. <dd>A D-Bus path to an object representing the added network.</dd>
  409. </dl>
  410. <dl>
  411. <dt>a{sv} : properties</dt>
  412. <dd>A dictionary containing properties of added network.</dd>
  413. </dl>
  414. </li>
  415. <li>
  416. <h3>NetworkRemoved ( o : network )</h3>
  417. <p>The network has been removed from the interface.</p>
  418. <h4>Arguments</h4>
  419. <dl>
  420. <dt>o : network</dt>
  421. <dd>A D-Bus path to an object representing the removed network.</dd>
  422. </dl>
  423. </li>
  424. <li>
  425. <h3>NetworkSelected ( o : network )</h3>
  426. <p>The network has been selected.</p>
  427. <h4>Arguments</h4>
  428. <dl>
  429. <dt>o : network</dt>
  430. <dd>A D-Bus path to an object representing the selected network.</dd>
  431. </dl>
  432. </li>
  433. <li>
  434. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  435. <p>Some properties have changed.</p>
  436. <h4>Arguments</h4>
  437. <dl>
  438. <dt>a{sv} : properties</dt>
  439. <dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible dictionary keys are: "ApScan", "Scanning", "CurrentBSS", "CurrentNetwork"</dd>
  440. </dl>
  441. </li>
  442. </ul>
  443. \section dbus_wps fi.w1.wpa_supplicant1.Interface.WPS
  444. Interface implemented by objects related to network interface added to
  445. &wpa_supplicant, i.e., returned by fi.w1.wpa_supplicant1.CreateInterface.
  446. \subsection dbus_wps_methods Methods
  447. <ul>
  448. <li>
  449. <h3>Start ( a{sv} : args ) --> a{sv} : output</h3>
  450. <p>Starts WPS configuration.</p>
  451. <h4>Arguments</h4>
  452. <dl>
  453. <dt>a{sv} : args</dt>
  454. <dd>
  455. A dictionary with arguments used to start WPS configuration. The dictionary may contain the following entries:
  456. <table>
  457. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  458. <tr><td>Role</td><td>s</td><td>The device's role. Possible values are "enrollee" and "registrar".</td><td>Yes</td>
  459. <tr><td>Type</td><td>s</td><td>WPS authentication type. Applies only for enrollee role. Possible values are "pin" and "pbc".</td><td>Yes, for enrollee role; otherwise no</td>
  460. <tr><td>Pin</td><td>s</td><td>WPS Pin.</td><td>Yes, for registrar role; otherwise optional</td>
  461. <tr><td>Bssid</td><td>ay</td><td></td><td>No</td>
  462. </table>
  463. </dd>
  464. </dl>
  465. <h4>Returns</h4>
  466. <dl>
  467. <dt>a{sv} : output</dt>
  468. <dd>
  469. <table>
  470. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  471. <tr><td>Pin</td><td>s</td><td>Newly generated PIN, if not specified for enrollee role and pin authentication type.</td><td>No</td>
  472. </table>
  473. </dd>
  474. </dl>
  475. <h4>Possible errors</h4>
  476. <dl>
  477. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  478. <dd>Starting WPS configuration failed for an unknown reason.</dd>
  479. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  480. <dd>Invalid entries were found in the passed argument.</dd>
  481. </dl>
  482. </li>
  483. </ul>
  484. \subsection dbus_wps_properties Properties
  485. <ul>
  486. <li>
  487. <h3>ProcessCredentials - b - (read/write)</h3>
  488. <p>Determines if the interface will process the credentials (credentials_processed configuration file parameter).</p>
  489. </li>
  490. </ul>
  491. \subsection dbus_wps_signals Signals
  492. <ul>
  493. <li>
  494. <h3>Event ( s : name, a{sv} : args )</h3>
  495. <p>WPS event occurred.</p>
  496. <h4>Arguments</h4>
  497. <dl>
  498. <dt>s : event</dt>
  499. <dd>Event type. Possible values are: "success, "fail" and "m2d"</dd>
  500. <dt>a{sv} : args</dt>
  501. <dd>
  502. Event arguments. Empty for success event, one entry ( "msg" : i ) for fail event and following entries for m2d event:
  503. <table>
  504. <tr><th>config_methods</th><th>Value type</th>
  505. <tr><td>manufacturer</td><td>q</td>
  506. <tr><td>model_name</td><td>ay</td>
  507. <tr><td>model_number</td><td>ay</td>
  508. <tr><td>serial_number</td><td>ay</td>
  509. <tr><td>dev_name</td><td>ay</td>
  510. <tr><td>primary_dev_type</td><td>ay</td>
  511. <tr><td>config_error</td><td>q</td>
  512. <tr><td>dev_password_id</td><td>q</td>
  513. </table>
  514. </dd>
  515. </dl>
  516. </li>
  517. <li>
  518. <h3>Credentials ( a{sv} : credentials )</h3>
  519. <p>WPS credentials. Dictionary contains:</p>
  520. <table>
  521. <tr><th>Key</th><th>Value type</th><th>Description</th>
  522. <tr><td>BSSID</td><td>ay</td><td></td>
  523. <tr><td>SSID</td><td>s</td><td></td>
  524. <tr><td>AuthType</td><td>as</td><td>Possible array elements: "open", "shared", "wpa-psk", "wpa-eap", "wpa2-eap", "wpa2-psk"</td>
  525. <tr><td>EncrType</td><td>as</td><td>Possible array elements: "none", "wep", "tkip", "aes"</td>
  526. <tr><td>Key</td><td>ay</td><td>Key data</td>
  527. <tr><td>KeyIndex</td><td>u</td><td>Key index</td>
  528. </table>
  529. </li>
  530. <li>
  531. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  532. <p>Some properties have changed.</p>
  533. <h4>Arguments</h4>
  534. <dl>
  535. <dt>a{sv} : properties</dt>
  536. <dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible dictionary keys are: "ProcessCredentials"</dd>
  537. </dl>
  538. </li>
  539. </ul>
  540. \section dbus_bss fi.w1.wpa_supplicant1.Interface.BSS
  541. Interface implemented by objects representing a scanned BSSs, i.e.,
  542. scan results.
  543. \subsection dbus_bss_properties Properties
  544. <ul>
  545. <li>
  546. <h3>BSSID - ay - (read)</h3>
  547. <p>BSSID of the BSS.</p>
  548. </li>
  549. <li>
  550. <h3>SSID - ay - (read)</h3>
  551. <p>SSID of the BSS.</p>
  552. </li>
  553. <li>
  554. <h3>WPAIE - ay - (read)</h3>
  555. <p>WPA information element of the BSS. The second byte contain number of bytes following it.</p>
  556. </li>
  557. <li>
  558. <h3>RSNIE - ay - (read)</h3>
  559. <p>RSN information element of the BSS. The second byte contain number of bytes following it.</p>
  560. </li>
  561. <li>
  562. <h3>WPSIE - ay - (read)</h3>
  563. <p>WPS information element of the BSS. The second byte contain number of bytes following it.</p>
  564. </li>
  565. <li>
  566. <h3>Privacy - b - (read)</h3>
  567. <p>Indicates if BSS supports privacy.</p>
  568. </li>
  569. <li>
  570. <h3>Mode - s - (read)</h3>
  571. <p>Describes mode of the BSS. Possible values are: "ad-hoc" and "infrastructure".</p>
  572. </li>
  573. <li>
  574. <h3>Frequency - q - (read)</h3>
  575. <p>Frequency of the BSS in MHz.</p>
  576. </li>
  577. <li>
  578. <h3>MaxRate - q - (read)</h3>
  579. <p>Maximal data rate of the BSS in bits per second.</p>
  580. </li>
  581. <li>
  582. <h3>Signal - n - (read)</h3>
  583. <p>Signal strength of the BSS.</p>
  584. </li>
  585. </ul>
  586. \section dbus_network fi.w1.wpa_supplicant1.Interface.Network
  587. Interface implemented by objects representing configured networks,
  588. i.e., returned by fi.w1.wpa_supplicant1.Interface.AddNetwork.
  589. \subsection dbus_network_properties Properties
  590. <ul>
  591. <li>
  592. <h3>Enabled - b - (read/write)</h3>
  593. <p>Determines if the configured network is enabled or not.</p>
  594. </li>
  595. <li>
  596. <h3>Properties - a{sv} - (read)</h3>
  597. <p>Properties of the configured network. Dictionary contains entries from "network" block of %wpa_supplicant configuration file. All values are string type, e.g., frequency is "2437", not 2437.
  598. </li>
  599. </ul>
  600. \subsection dbus_network_signals Signals
  601. <ul>
  602. <li>
  603. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  604. <p>Some properties have changed.</p>
  605. <h4>Arguments</h4>
  606. <dl>
  607. <dt>a{sv} : properties</dt>
  608. <dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible dictionary keys are: "Enabled"</dd>
  609. </dl>
  610. </li>
  611. </ul>
  612. */