Cleanup: add `#include <stdbool.h>` whenever `bool` type is used
[babeltrace.git] / src / plugins / ctf / lttng-live / viewer-connection.h
index 549a900387d5eb611eb686ac367b997c62f8ef11..daa138a2e83b9f5b7c553393c8f7e1961ebfd7c4 100644 (file)
@@ -23,6 +23,7 @@
  * SOFTWARE.
  */
 
+#include <stdbool.h>
 #include <stdio.h>
 #include <glib.h>
 
@@ -45,9 +46,9 @@
 struct lttng_live_component;
 
 struct live_viewer_connection {
+       bt_object obj;
        bt_logging_level log_level;
        bt_self_component *self_comp;
-       bt_object obj;
 
        GString *url;
 
@@ -86,7 +87,8 @@ 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_logging_level log_level);
 
 void live_viewer_connection_destroy(
                struct live_viewer_connection *conn);
This page took 0.024931 seconds and 4 git commands to generate.