Commit | Line | Data |
---|---|---|
7591bab1 MD |
1 | #ifndef LTTNG_RELAYD_LIVE_H |
2 | #define LTTNG_RELAYD_LIVE_H | |
3 | ||
d3e2ba59 | 4 | /* |
ab5be9fa MJ |
5 | * Copyright (C) 2013 Julien Desfossez <jdesfossez@efficios.com> |
6 | * Copyright (C) 2013 David Goulet <dgoulet@efficios.com> | |
7 | * Copyright (C) 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
d3e2ba59 | 8 | * |
ab5be9fa | 9 | * SPDX-License-Identifier: GPL-2.0-only |
d3e2ba59 | 10 | * |
d3e2ba59 JD |
11 | */ |
12 | ||
d3e2ba59 JD |
13 | #include <common/uri.h> |
14 | ||
15 | #include "lttng-relayd.h" | |
16 | ||
7591bab1 | 17 | int relayd_live_create(struct lttng_uri *live_uri); |
178a0557 MD |
18 | int relayd_live_stop(void); |
19 | int relayd_live_join(void); | |
d3e2ba59 | 20 | |
92c6ca54 | 21 | struct relay_viewer_stream *live_find_viewer_stream_by_id(uint64_t stream_id); |
d3e2ba59 JD |
22 | |
23 | #endif /* LTTNG_RELAYD_LIVE_H */ |