| 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 | #include <lttng/endpoint-internal.h> |
| 9 | |
| 10 | static |
| 11 | struct lttng_endpoint lttng_session_daemon_notification_endpoint_instance = { |
| 12 | .type = LTTNG_ENDPOINT_TYPE_DEFAULT_SESSIOND_NOTIFICATION, |
| 13 | }; |
| 14 | |
| 15 | static |
| 16 | struct lttng_endpoint lttng_session_daemon_command_endpoint_instance = { |
| 17 | .type = LTTNG_ENDPOINT_TYPE_DEFAULT_SESSIOND_COMMAND, |
| 18 | }; |
| 19 | |
| 20 | struct lttng_endpoint *lttng_session_daemon_notification_endpoint = |
| 21 | <tng_session_daemon_notification_endpoint_instance; |
| 22 | |
| 23 | struct lttng_endpoint *lttng_session_daemon_command_endpoint = |
| 24 | <tng_session_daemon_command_endpoint_instance; |