summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authordtucker <dtucker>2004-11-05 09:35:44 +0000
committerdtucker <dtucker>2004-11-05 09:35:44 +0000
commitf282b14d9199852900b3835e78da1a3aac92531b (patch)
treec987441d7bca54e628d46a5790fabf7b8cf152de /channels.h
parent8c0e9e80b12634824db32de094df1aea6d0c0a10 (diff)
downloadopenssh-f282b14d9199852900b3835e78da1a3aac92531b.tar.gz
- 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 f8dc8249..c47de55c 100644
--- a/channels.h
+++ b/channels.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: channels.h,v 1.74 2004/08/11 21:43:04 avsm Exp $ */
+/* $OpenBSD: channels.h,v 1.75 2004/10/29 21:47:15 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -79,6 +79,7 @@ struct Channel {
int ctl_fd; /* control fd (client sharing) */
int isatty; /* rfd is a tty */
int wfd_isatty; /* wfd is a tty */
+ int client_tty; /* (client) TTY has been requested */
int force_drain; /* force close on iEOF */
int delayed; /* fdset hack */
Buffer input; /* data read from socket, to be sent over