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