=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.738 retrieving revision 1.739 diff -c -r1.738 -r1.739 *** src/usr.bin/tmux/tmux.h 2017/04/18 21:41:42 1.738 --- src/usr.bin/tmux/tmux.h 2017/04/19 06:52:27 1.739 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.738 2017/04/18 21:41:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.739 2017/04/19 06:52:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1043,1049 **** struct evbuffer *in; struct event event_out; struct evbuffer *out; ! size_t written; struct termios tio; --- 1043,1050 ---- struct evbuffer *in; struct event event_out; struct evbuffer *out; ! struct event timer; ! size_t discarded; struct termios tio; *************** *** 1059,1064 **** --- 1060,1066 ---- #define TTY_STARTED 0x10 #define TTY_OPENED 0x20 #define TTY_FOCUS 0x40 + #define TTY_BLOCK 0x80 int flags; struct tty_term *term; *************** *** 1305,1310 **** --- 1307,1315 ---- char *term; char *ttyname; struct tty tty; + + size_t written; + size_t discarded; void (*stdin_callback)(struct client *, int, void *); void *stdin_callback_data;