diff options
author | Avichal Agarwal <avichal.a@samsung.com> | 2015-12-04 05:27:27 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2015-12-06 10:50:13 (GMT) |
commit | af041f997d7f35df8d05607c7d10e75c9fafe22f (patch) | |
tree | f98c792d4f119bff97dd544d7991a246752cf1b4 /doc | |
parent | b4e1e9957735cca1d73345503e5455d408ed8941 (diff) | |
download | hostap-af041f997d7f35df8d05607c7d10e75c9fafe22f.zip hostap-af041f997d7f35df8d05607c7d10e75c9fafe22f.tar.gz hostap-af041f997d7f35df8d05607c7d10e75c9fafe22f.tar.bz2 |
dbus: Add support for vendor specific elements
The new methods are
1. VendorElemAdd "i" "ay" i=integer ay=array of bytes
2. VendorElemGet "i" i=integer (output array of bytes)
3. VendorElemRem "i" "ay" i=integer ay=array of bytes
These provide functionality similar to the control interface commands
VENDOR_ELEM_ADD, VENDOR_ELEM_GET, and VENDOR_ELEM_REMOVE.
Signed-off-by: Avichal Agarwal <avichal.a@samsung.com>
Signed-off-by: Purushottam Kushwaha <p.kushwaha@samsung.com>
Signed-off-by: Kyeong-Chae Lim <kcya.lim@samsung.com>
Signed-off-by: Mayank Haarit <mayank.h@samsung.com>
Signed-off-by: Dilshad Ahmad <dilshad.a@samsung.com>
[VendorElemGet to return array of bytes instead of string; cleanup]
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dbus.doxygen | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/doc/dbus.doxygen b/doc/dbus.doxygen index cf60755..1989eea 100644 --- a/doc/dbus.doxygen +++ b/doc/dbus.doxygen @@ -456,6 +456,58 @@ fi.w1.wpa_supplicant1.CreateInterface. </dl> </li> <li> + <h3>VendorElemAdd ( i: frame_id, ay: ielems ) --> nothing</h3> + <p>Add Vendor Elements to corresponding frame ID.</p> + <h4>Arguments</h4> + <dl> + <dt>i : frame_id</dt> + <dd>Frame ID for which Vendor specific IE is to be added.</dd> + <dt>ay : ielems</dt> + <dd>Information Element(s).</dd> + </dl> + <h4>Possible errors</h4> + <dl> + <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt> + <dd>The "ielems" argument is not a properly formatted or size mismatch.</dd> + <dt>fi.w1.wpa_supplicant1.NoMemory</dt> + <dd>Needed memory was not possible to get allocated.</dd> + </dl> + </li> + <li> + <h3>VendorElemGet ( i: frame_id ) --> ay: ielems</h3> + <p>Get Vendor Elements of corresponding frame ID.</p> + <h4>Arguments</h4> + <dl> + <dt>i : frame_id</dt> + <dd>Frame ID for which Vendor specific IE is being queried.</dd> + <dt>ay : ielems</dt> + <dd>Information Element(s).</dd> + </dl> + <h4>Possible errors</h4> + <dl> + <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt> + <dd>The "frame_id" argument is not valid.</dd> + </dl> + </li> + <li> + <h3>VendorElemRem ( i: frame_id, ay: ielems ) --> nothing</h3> + <p>Remove Vendor Elements of corresponding frame ID.</p> + <h4>Arguments</h4> + <dl> + <dt>i : frame_id</dt> + <dd>Frame ID for which Vendor specific IE is to be removed.</dd> + <dt>ay : ielems</dt> + <dd>Information Element(s) OR * to remove all.</dd> + </dl> + <h4>Possible errors</h4> + <dl> + <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt> + <dd>The "ielems" argument is not a properly formatted or size mismatch.</dd> + <dt>fi.w1.wpa_supplicant1.NoMemory</dt> + <dd>Needed memory was not possible to get allocated.</dd> + </dl> + </li> + <li> <h3>SaveConfig ( ) --> nothing</h3> <p>Save configuration to the configuration file.</p> </li> |