aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/ipc.h1
-rw-r--r--sway/ipc-server.c8
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ipc.h b/include/ipc.h
index 9063b933..6063f69c 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -16,6 +16,7 @@ enum ipc_command_type {
16 IPC_GET_BINDING_MODES = 8, 16 IPC_GET_BINDING_MODES = 8,
17 IPC_GET_CONFIG = 9, 17 IPC_GET_CONFIG = 9,
18 IPC_SEND_TICK = 10, 18 IPC_SEND_TICK = 10,
19 IPC_SYNC = 11,
19 20
20 // sway-specific command types 21 // sway-specific command types
21 IPC_GET_INPUTS = 100, 22 IPC_GET_INPUTS = 100,
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 69009f25..28546d41 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -836,6 +836,14 @@ void ipc_client_handle_command(struct ipc_client *client) {
836 goto exit_cleanup; 836 goto exit_cleanup;
837 } 837 }
838 838
839 case IPC_SYNC:
840 {
841 // It was decided sway will not support this, just return success:false
842 const char msg[] = "{\"success\": false}";
843 ipc_send_reply(client, msg, strlen(msg));
844 goto exit_cleanup;
845 }
846
839 default: 847 default:
840 wlr_log(WLR_INFO, "Unknown IPC command type %i", client->current_command); 848 wlr_log(WLR_INFO, "Unknown IPC command type %i", client->current_command);
841 goto exit_cleanup; 849 goto exit_cleanup;