sessiond: prepare client replies through an lttng_payload
[lttng-tools.git] / include / lttng / endpoint-internal.h
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
11#include <lttng/endpoint.h>
12#include <common/macros.h>
13
14enum lttng_endpoint_type {
15 LTTNG_ENDPOINT_TYPE_DEFAULT_SESSIOND_NOTIFICATION = 0,
16};
17
18struct lttng_endpoint {
19 enum lttng_endpoint_type type;
20};
21
22#endif /* LTTNG_ENDPOINT_INTERNAL_H */
This page took 0.037945 seconds and 5 git commands to generate.