2 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License, version 2 only, as
7 * 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 with
15 * this program; if not, write to the Free Software Foundation, Inc., 51
16 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include <common/common.h>
24 #include <common/sessiond-comm/relayd.h>
26 #include "cmd-generic.h"
27 #include "lttng-relayd.h"
29 int cmd_create_session_2_4(struct relay_command
*cmd
,
30 struct relay_session
*session
)
33 struct lttcomm_relayd_create_session_2_4 session_info
;
38 ret
= cmd_recv(cmd
->sock
, &session_info
, sizeof(session_info
));
40 ERR("Unable to recv session info version 2.4");
44 strncpy(session
->session_name
, session_info
.session_name
,
45 sizeof(session
->session_name
));
46 strncpy(session
->hostname
, session_info
.hostname
,
47 sizeof(session
->hostname
));
48 session
->live_timer
= be32toh(session_info
.live_timer
);