diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-10-06 00:28:35 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-10-06 00:28:35 +0100 |
commit | f141e9b37a8d8a0c89c4f74137df9e5088b4b7af (patch) | |
tree | 88b623f63240deb4169f965f97ac68c65bad36a9 /tmux.h | |
parent | 3fba377ddd6fd234c614b53d5402153c6489b505 (diff) | |
download | rtmux-f141e9b37a8d8a0c89c4f74137df9e5088b4b7af.tar.gz rtmux-f141e9b37a8d8a0c89c4f74137df9e5088b4b7af.tar.bz2 rtmux-f141e9b37a8d8a0c89c4f74137df9e5088b4b7af.zip |
Instead of fixed size buffers for some messages, send only the string length.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -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]; |