diff options
author | Witold Sowa <witold.sowa@gmail.com> | 2010-01-01 12:47:59 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2010-01-01 12:47:59 +0200 |
commit | e376f1193beee399d48260929a636ba3e31da234 (patch) | |
tree | af207112990c0d080af859a186a2b90f459b139f /doc | |
parent | 58605c6e61ad5020de60fa85424e0cd9b376db72 (diff) | |
download | external_wpa_supplicant_8_ti-e376f1193beee399d48260929a636ba3e31da234.zip external_wpa_supplicant_8_ti-e376f1193beee399d48260929a636ba3e31da234.tar.gz external_wpa_supplicant_8_ti-e376f1193beee399d48260929a636ba3e31da234.tar.bz2 |
dbus: Add second properties arg to *Added signals
Add a dictionary argument containing all properties of the newly added
object to BSSAdded, NetworkAdded, and InterfaceAdded signals.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dbus.doxygen | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/doc/dbus.doxygen b/doc/dbus.doxygen index 04bdf5a..9f5f17e 100644 --- a/doc/dbus.doxygen +++ b/doc/dbus.doxygen @@ -117,13 +117,17 @@ registered in the bus with fi.w1.wpa_supplicant1 name. <ul> <li> - <h3>InterfaceAdded ( o : interface )</h3> + <h3>InterfaceAdded ( o : interface, a{sv} : properties )</h3> <p>A new interface was added to %wpa_supplicant.</p> <h4>Arguments</h4> <dl> <dt>o : interface</dt> <dd>A D-Bus path to an object representing the added interface</dd> </dl> + <dl> + <dt>a{sv} : properties</dt> + <dd>A dictionary containing properties of added interface.</dd> + </dl> </li> <li> @@ -402,13 +406,17 @@ fi.w1.wpa_supplicant1.CreateInterface. </li> <li> - <h3>BSSAdded ( o : BSS )</h3> + <h3>BSSAdded ( o : BSS, a{sv} : properties )</h3> <p>Interface became aware of a new BSS.</p> <h4>Arguments</h4> <dl> <dt>o : BSS</dt> <dd>A D-Bus path to an object representing the new BSS.</dd> </dl> + <dl> + <dt>a{sv} : properties</dt> + <dd>A dictionary containing properties of added BSS.</dd> + </dl> </li> <li> @@ -442,13 +450,17 @@ fi.w1.wpa_supplicant1.CreateInterface. </li> <li> - <h3>NetworkAdded ( o : network )</h3> + <h3>NetworkAdded ( o : network, a{sv} : properties )</h3> <p>A new network has been added to the interface.</p> <h4>Arguments</h4> <dl> <dt>o : network</dt> <dd>A D-Bus path to an object representing the added network.</dd> </dl> + <dl> + <dt>a{sv} : properties</dt> + <dd>A dictionary containing properties of added network.</dd> + </dl> </li> <li> |