Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / src / bin / lttng-relayd / cmd-2-11.hpp
1 /*
2 * Copyright (C) 2018 Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8 #ifndef RELAYD_CMD_2_11_H
9 #define RELAYD_CMD_2_11_H
10
11 #include "lttng-relayd.hpp"
12
13 #include <common/buffer-view.hpp>
14 #include <common/uuid.hpp>
15
16 int cmd_create_session_2_11(const struct lttng_buffer_view *payload,
17 char *session_name,
18 char *hostname,
19 char *base_path,
20 uint32_t *live_timer,
21 bool *snapshot,
22 uint64_t *id_sessiond,
23 lttng_uuid& sessiond_uuid,
24 bool *has_current_chunk,
25 uint64_t *current_chunk_id,
26 time_t *creation_time,
27 bool *session_name_contains_creation_time);
28
29 int cmd_recv_stream_2_11(const struct lttng_buffer_view *payload,
30 char **ret_path_name,
31 char **ret_channel_name,
32 uint64_t *tracefile_size,
33 uint64_t *tracefile_count,
34 uint64_t *trace_archive_id);
35
36 #endif /* RELAYD_CMD_2_11_H */
This page took 0.031065 seconds and 5 git commands to generate.