Add failure reply on IPC_SYNC

Since it was decided that sway will not support IPC_SYNC, just return
`{'success': false}` as a reply
This commit is contained in:
Brian Ashworth 2018-12-29 10:43:32 -05:00 committed by emersion
parent 0dbf2673a1
commit ae8937b11a
2 changed files with 9 additions and 0 deletions

View file

@ -836,6 +836,14 @@ void ipc_client_handle_command(struct ipc_client *client) {
goto exit_cleanup;
}
case IPC_SYNC:
{
// It was decided sway will not support this, just return success:false
const char msg[] = "{\"success\": false}";
ipc_send_reply(client, msg, strlen(msg));
goto exit_cleanup;
}
default:
wlr_log(WLR_INFO, "Unknown IPC command type %i", client->current_command);
goto exit_cleanup;