mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-03-06 01:40:18 -05:00
pactl: Implement list message-handlers
For better readability, "pactl list message-handlers" is introduced which prints a formatted output of "pactl send-message /core list-handlers". The patch also adds the functions pa_message_params_read_raw() and pa_message_params_read_string() for easy parsing of the message response string. Because the functions need to modify the parameter string, the message handler and the pa_context_string_callback function now receive a char* instead of a const char* as parameter argument. Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/51>
This commit is contained in:
parent
5c0ab52145
commit
4a28b164d1
15 changed files with 253 additions and 12 deletions
|
|
@ -2236,8 +2236,15 @@ static void context_string_callback(pa_pdispatch *pd, uint32_t command, uint32_t
|
|||
response = "";
|
||||
|
||||
if (o->callback) {
|
||||
pa_context_string_cb_t cb = (pa_context_string_cb_t) o->callback;
|
||||
cb(o->context, success, response, o->userdata);
|
||||
char *response_copy;
|
||||
pa_context_string_cb_t cb;
|
||||
|
||||
response_copy = pa_xstrdup(response);
|
||||
|
||||
cb = (pa_context_string_cb_t) o->callback;
|
||||
cb(o->context, success, response_copy, o->userdata);
|
||||
|
||||
pa_xfree(response_copy);
|
||||
}
|
||||
|
||||
finish:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue