2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 * Julien Desfossez <julien.desfossez@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include <lttng/lttng.h>
30 * lttng-relayd communication header.
32 struct lttcomm_relayd_hdr
{
33 /* Circuit ID not used for now so always ignored */
35 uint64_t data_size
; /* data size following this header */
36 uint32_t cmd
; /* enum lttcomm_sessiond_command */
37 uint32_t cmd_version
; /* command version */
38 } __attribute__ ((__packed__
));
41 * lttng-relayd data header.
43 struct lttcomm_relayd_data_hdr
{
44 /* Circuit ID not used for now so always ignored */
46 uint64_t stream_id
; /* Stream ID known by the relayd */
47 uint64_t net_seq_num
; /* Network seq. number for UDP. */
48 uint32_t data_size
; /* data size following this header */
49 } __attribute__ ((__packed__
));
53 * Used to create a session between the relay and the sessiond.
55 struct lttcomm_relayd_create_session
{
56 char hostname
[LTTNG_MAX_DNNAME
];
57 char session_name
[NAME_MAX
];
62 * Used to add a stream on the relay daemon.
64 struct lttcomm_relayd_add_stream
{
65 char channel_name
[LTTNG_SYMBOL_NAME_LEN
];
66 char pathname
[PATH_MAX
];
67 } __attribute__ ((__packed__
));
70 * Answer from an add stream command.
72 struct lttcomm_relayd_status_stream
{
75 } __attribute__ ((__packed__
));
78 * Used to return command code for command not needing special data.
80 struct lttcomm_relayd_generic_reply
{
82 } __attribute__ ((__packed__
));
85 * Used to update synchronization information.
87 struct lttcomm_relayd_update_sync_info
{
88 /* TODO: fill the structure */
89 } __attribute__ ((__packed__
));
94 struct lttcomm_relayd_version
{
97 } __attribute__ ((__packed__
));
100 * Metadata payload used when metadata command is sent.
102 struct lttcomm_relayd_metadata_payload
{
105 } __attribute__ ((__packed__
));
107 #endif /* _RELAYD_COMM */