summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-11-05 20:35:44 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-11-05 20:35:44 +1100
commit5d78de628376f55fd2fc5acad14733cf90867425 (patch)
tree806ff3f561b6251fe8ac13a23975ac208c09d514 /channels.h
parentb2694f0e8a54112200f2638f01b622f603dd125f (diff)
- djm@cvs.openbsd.org 2004/10/29 21:47:15
[channels.c channels.h clientloop.c] fix some window size change bugs for multiplexed connections: windows sizes were not being updated if they had changed after ~^Z suspends and SIGWINCH was not being processed unless the first connection had requested a tty; ok markus
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels.h b/channels.h
index f8dc8249c..c47de55c0 100644
--- a/channels.h
+++ b/channels.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.h,v 1.74 2004/08/11 21:43:04 avsm Exp $ */ 1/* $OpenBSD: channels.h,v 1.75 2004/10/29 21:47:15 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -79,6 +79,7 @@ struct Channel {
79 int ctl_fd; /* control fd (client sharing) */ 79 int ctl_fd; /* control fd (client sharing) */
80 int isatty; /* rfd is a tty */ 80 int isatty; /* rfd is a tty */
81 int wfd_isatty; /* wfd is a tty */ 81 int wfd_isatty; /* wfd is a tty */
82 int client_tty; /* (client) TTY has been requested */
82 int force_drain; /* force close on iEOF */ 83 int force_drain; /* force close on iEOF */
83 int delayed; /* fdset hack */ 84 int delayed; /* fdset hack */
84 Buffer input; /* data read from socket, to be sent over 85 Buffer input; /* data read from socket, to be sent over