diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-07-09 07:46:23 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-07-09 07:46:23 +0000 |
commit | 22a1dc61ef8e4e1c98e3a088db1dbc84d424c7a7 (patch) | |
tree | efc5d779a40c004e708bd6a99b359c660931249b /doc/libwpactrl | |
parent | 0c9b6b3625dff03b6d590af597aa0f194790addb (diff) | |
download | bcnm-22a1dc61ef8e4e1c98e3a088db1dbc84d424c7a7.tar.xz |
Separate messages via \0, read messages one by one. Add wpactrl_scan_parse() skel.
Diffstat (limited to 'doc/libwpactrl')
-rw-r--r-- | doc/libwpactrl/index.html | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/doc/libwpactrl/index.html b/doc/libwpactrl/index.html index 0d2870e..1115787 100644 --- a/doc/libwpactrl/index.html +++ b/doc/libwpactrl/index.html @@ -175,24 +175,18 @@ a spamming wpa_supplicant from monopolizing your program. </p> <p> -<code> char *wpactrl_data (wpactrl_t *a) </code> <br /> -Returns a pointer to the unsolicited messages from wpa_supplicant -that have been read by <tt>wpactrl_update()</tt> but haven't been -acknowledged yet. +<code> char *wpactrl_msg (wpactrl_t *a) </code> <br /> +Returns a pointer to the first unsolicited message from +wpa_supplicant that has been read by <tt>wpactrl_update()</tt> but +has not been acknowledged yet. If there's no such message, +returns NULL. </p> <p> -<code> char *wpactrl_datalen (wpactrl_t *a) </code> <br /> -Returns the length of unsolicited messages from wpa_supplicant -that have been read by <tt>wpactrl_update()</tt> but haven't been -acknowledged yet. -</p> - -<p> -<code> void wpactrl_ackdata (wpactrl_t *a) </code> -Acknowledges reading the latest batch of unsolicited messages -from wpa_supplicant: allows the next invocation of -<tt>wpactrl_update()</tt> to reuse the storage. +<code> void wpactrl_nextmsg (wpactrl_t *a) </code> <br /> +Acknowledges reading of one unsolicited message from wpa_supplicant. +The next invocation of <tt>wpactrl_msg()</tt> will point to the next +one. </p> <p> |