aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-10-06 00:28:35 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-10-06 00:28:35 +0100
commitf141e9b37a8d8a0c89c4f74137df9e5088b4b7af (patch)
tree88b623f63240deb4169f965f97ac68c65bad36a9 /tmux.h
parent3fba377ddd6fd234c614b53d5402153c6489b505 (diff)
downloadrtmux-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.h12
1 files changed, 0 insertions, 12 deletions
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];