From f141e9b37a8d8a0c89c4f74137df9e5088b4b7af Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 6 Oct 2013 00:28:35 +0100 Subject: Instead of fixed size buffers for some messages, send only the string length. --- tmux.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 7d082796..96ce0c63 100644 --- a/tmux.h +++ b/tmux.h @@ -487,22 +487,10 @@ struct msg_identify_data { int flags; }; -struct msg_lock_data { - char cmd[COMMAND_LENGTH]; -}; - struct msg_environ_data { char var[ENVIRON_LENGTH]; }; -struct msg_shell_data { - char shell[MAXPATHLEN]; -}; - -struct msg_exit_data { - int retcode; -}; - struct msg_stdin_data { ssize_t size; char data[BUFSIZ]; -- cgit