diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-23 09:36:19 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-23 09:36:19 +0000 |
commit | 25e94a05264809294417aeebc63e9d64c487dce1 (patch) | |
tree | 4cd3b2f11f52633002372500315e75047848a9c2 /tmux.h | |
parent | 98e7e79e4c52821270e0670273a9149bcb6e5a4c (diff) | |
download | rtmux-25e94a05264809294417aeebc63e9d64c487dce1.tar.gz rtmux-25e94a05264809294417aeebc63e9d64c487dce1.tar.bz2 rtmux-25e94a05264809294417aeebc63e9d64c487dce1.zip |
List client command.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.62 2007-10-19 20:36:08 nicm Exp $ */ +/* $Id: tmux.h,v 1.63 2007-10-23 09:36:19 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -297,6 +297,8 @@ struct msg_command_data { }; struct msg_identify_data { + char tty[TTY_NAME_MAX]; + u_int sx; u_int sy; }; @@ -426,6 +428,8 @@ ARRAY_DECL(sessions, struct session *); /* Client connection. */ struct client { + char *tty; + int fd; struct buffer *in; struct buffer *out; @@ -529,6 +533,7 @@ extern const struct cmd_entry cmd_bind_key_entry; extern const struct cmd_entry cmd_detach_session_entry; extern const struct cmd_entry cmd_kill_window_entry; extern const struct cmd_entry cmd_last_window_entry; +extern const struct cmd_entry cmd_list_clients_entry; extern const struct cmd_entry cmd_list_keys_entry; extern const struct cmd_entry cmd_list_sessions_entry; extern const struct cmd_entry cmd_list_windows_entry; |