X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fconfig%2Fsession-config.h;h=f48ff74ae6f54384279115c424105c76fc8cce38;hb=2d97a0067600335f07eecb2c1d9ba68fc164583e;hp=c4e4797e5c7c0fcf6166126ee6cdd4839cda16aa;hpb=40b4155f51de2e0644d7e8d9b4d024cbeee91c74;p=lttng-tools.git diff --git a/src/common/config/session-config.h b/src/common/config/session-config.h index c4e4797e5..f48ff74ae 100644 --- a/src/common/config/session-config.h +++ b/src/common/config/session-config.h @@ -30,6 +30,13 @@ struct config_entry { const char *value; }; +struct config_load_session_override_attr { + char *path_url; + char *ctrl_url; + char *data_url; + char *session_name; +}; + /* Instance of a configuration writer. */ struct config_writer; @@ -78,8 +85,8 @@ int config_parse_value(const char *value); /* * Create an instance of a configuration writer. * - * fd_output File to which the XML content must be written. The file will be - * closed once the config_writer has been destroyed. + * fd_output File to which the XML content must be written. fd_output is + * owned by the caller. * * indent If other than 0 the XML will be pretty printed * with indentation and newline. @@ -217,12 +224,14 @@ int config_writer_write_element_string(struct config_writer *writer, * * overwrite Overwrite current session configuration if it exists. * autoload Tell to load the auto session(s). + * overrides The override attribute structure specifying override parameters. * * Returns zero if the session could be loaded successfully. Returns * a negative LTTNG_ERR code on error. */ LTTNG_HIDDEN int config_load_session(const char *path, const char *session_name, - int overwrite, unsigned int autoload); + int overwrite, unsigned int autoload, + const struct config_load_session_override_attr *overrides); #endif /* _CONFIG_H */