docs: Add supported versions and fix-backport policy
[lttng-tools.git] / include / lttng / endpoint-internal.h
1 /*
2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8 #ifndef LTTNG_ENDPOINT_INTERNAL_H
9 #define LTTNG_ENDPOINT_INTERNAL_H
10
11 #include <lttng/endpoint.h>
12 #include <common/macros.h>
13
14 enum lttng_endpoint_type {
15 LTTNG_ENDPOINT_TYPE_DEFAULT_SESSIOND_NOTIFICATION = 0,
16 LTTNG_ENDPOINT_TYPE_DEFAULT_SESSIOND_COMMAND = 1,
17 };
18
19 struct lttng_endpoint {
20 enum lttng_endpoint_type type;
21 };
22
23 #endif /* LTTNG_ENDPOINT_INTERNAL_H */
This page took 0.028594 seconds and 4 git commands to generate.