src.ctf.lttng-live: use `_APPEND_CAUSE` variants of logging macros
[babeltrace.git] / src / plugins / ctf / lttng-live / viewer-connection.h
index be6dc5a194ba1c7f1eb81482ed0ae18ceee0b93d..fcdd4c4dbddc96cb7b22191a3b672844f4c13c87 100644 (file)
@@ -23,6 +23,7 @@
  * SOFTWARE.
  */
 
+#include <stdbool.h>
 #include <stdio.h>
 #include <glib.h>
 
 struct lttng_live_component;
 
 struct live_viewer_connection {
-       bt_logging_level log_level;
        bt_object obj;
+       bt_logging_level log_level;
+       bt_self_component *self_comp;
+       bt_self_component_class *self_comp_class;
 
        GString *url;
 
@@ -85,12 +88,15 @@ struct packet_index {
 
 struct live_viewer_connection * live_viewer_connection_create(
                const char *url, bool in_query,
-               struct lttng_live_msg_iter *lttng_live_msg_iter);
+               struct lttng_live_msg_iter *lttng_live_msg_iter,
+               bt_self_component *self_comp,
+               bt_self_component_class *self_comp_class,
+               bt_logging_level log_level);
 
 void live_viewer_connection_destroy(
                struct live_viewer_connection *conn);
 
-bt_query_status live_viewer_connection_list_sessions(
+bt_component_class_query_method_status live_viewer_connection_list_sessions(
                struct live_viewer_connection *viewer_connection,
                const bt_value **user_result);
 
This page took 0.025469 seconds and 4 git commands to generate.