* */
/*
- * Set the control url override attribute.
+ * Set the url override attribute.
*
* Supported format:
- * NETPROTO://(HOST | IPADDR)[:PORT][/TRACEPATH]
+ * file://TRACEPATH
+ * NETPROTO://(HOST | IPADDR)[:CTRLPORT[:DATAPORT]][/TRACEPATH]
*
* Where NETPROTO is one of {tcp, tcp6}
*
* See lttng-create(1) for more detail.
*/
-int lttng_load_session_attr_set_override_ctrl_url(
+int lttng_load_session_attr_set_override_url(
struct lttng_load_session_attr *attr, const char *url);
/*
- * Set the data url override attribute.
+ * Set the control url override attribute.
*
* Supported format:
* NETPROTO://(HOST | IPADDR)[:PORT][/TRACEPATH]
*
* See lttng-create(1) for more detail.
*/
-int lttng_load_session_attr_set_override_data_url(
+int lttng_load_session_attr_set_override_ctrl_url(
struct lttng_load_session_attr *attr, const char *url);
/*
- * Set the url override attribute.
+ * Set the data url override attribute.
*
* Supported format:
- * file://TRACEPATH
- * NETPROTO://(HOST | IPADDR)[:CTRLPORT[:DATAPORT]][/TRACEPATH]
+ * NETPROTO://(HOST | IPADDR)[:PORT][/TRACEPATH]
*
* Where NETPROTO is one of {tcp, tcp6}
*
* See lttng-create(1) for more detail.
*/
-int lttng_load_session_attr_set_override_url(
+int lttng_load_session_attr_set_override_data_url(
struct lttng_load_session_attr *attr, const char *url);
/*