mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
context: add pa_context_load_cookie_from_file()
There is no function to load the authentication cookie for a context. You can only set environment variables. This patch adds pa_context_load_cookie_from_file(). Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
This commit is contained in:
parent
441a5a422c
commit
0157f4b25f
3 changed files with 20 additions and 0 deletions
|
|
@ -67,6 +67,7 @@ pa_context_is_pending;
|
||||||
pa_context_kill_client;
|
pa_context_kill_client;
|
||||||
pa_context_kill_sink_input;
|
pa_context_kill_sink_input;
|
||||||
pa_context_kill_source_output;
|
pa_context_kill_source_output;
|
||||||
|
pa_context_load_cookie_from_file;
|
||||||
pa_context_load_module;
|
pa_context_load_module;
|
||||||
pa_context_move_sink_input_by_index;
|
pa_context_move_sink_input_by_index;
|
||||||
pa_context_move_sink_input_by_name;
|
pa_context_move_sink_input_by_name;
|
||||||
|
|
|
||||||
|
|
@ -1448,3 +1448,14 @@ size_t pa_context_get_tile_size(pa_context *c, const pa_sample_spec *ss) {
|
||||||
mbs = PA_ROUND_DOWN(pa_mempool_block_size_max(c->mempool), fs);
|
mbs = PA_ROUND_DOWN(pa_mempool_block_size_max(c->mempool), fs);
|
||||||
return PA_MAX(mbs, fs);
|
return PA_MAX(mbs, fs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int pa_context_load_cookie_from_file(pa_context *c, const char *cookie_file_path) {
|
||||||
|
pa_assert(c);
|
||||||
|
pa_assert(cookie_file_path);
|
||||||
|
pa_assert(PA_REFCNT_VALUE(c) >= 1);
|
||||||
|
|
||||||
|
PA_CHECK_VALIDITY(c, !pa_detect_fork(), PA_ERR_FORKED);
|
||||||
|
PA_CHECK_VALIDITY(c, c->state == PA_CONTEXT_UNCONNECTED, PA_ERR_BADSTATE);
|
||||||
|
|
||||||
|
return pa_client_conf_load_cookie_from_file(c->conf, cookie_file_path);
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -280,6 +280,14 @@ void pa_context_rttime_restart(pa_context *c, pa_time_event *e, pa_usec_t usec);
|
||||||
* pa_stream_get_sample_spec(ss)); \since 0.9.20 */
|
* pa_stream_get_sample_spec(ss)); \since 0.9.20 */
|
||||||
size_t pa_context_get_tile_size(pa_context *c, const pa_sample_spec *ss);
|
size_t pa_context_get_tile_size(pa_context *c, const pa_sample_spec *ss);
|
||||||
|
|
||||||
|
/** Load the authentication cookie from a file. This function is primarily
|
||||||
|
* meant for PulseAudio's own tunnel modules, which need to load the cookie
|
||||||
|
* from a custom location. Applications don't usually need to care about the
|
||||||
|
* cookie at all, but if it happens that you know what the authentication
|
||||||
|
* cookie is and your application needs to load it from a non-standard
|
||||||
|
* location, feel free to use this function. \since 5.0 */
|
||||||
|
int pa_context_load_cookie_from_file(pa_context *c, const char *cookie_file_path);
|
||||||
|
|
||||||
PA_C_DECL_END
|
PA_C_DECL_END
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue