int err;
struct msg_info* _msg;
char connect = (char)connected;
+ char temp = 1;
+
if (vevdi == NULL) {
LOGERR("invalid evdi handle\n");
return;
memset(_msg, 0, sizeof(vevdi->send_msginfo));
memcpy(_msg->buf, GUEST_CONNECTION_CATEGORY, 7);
+ memcpy(_msg->buf + ID_SIZE + 2, &temp, 1);
memcpy(_msg->buf + ID_SIZE + 3, &connect, 1);
_msg->route = route_control_server;
_msg->use = ID_SIZE + HEADER_SIZE;
evdi_info->guest_connected = true;
- //send_guest_connected_msg(true);
+ send_guest_connected_msg(true);
ret = _make_buf_and_kick();
if (ret < 0)