diff options
author | 2004-10-29 21:47:15 +0000 | |
---|---|---|
committer | 2004-10-29 21:47:15 +0000 | |
commit | e896ad7b655ca22b7df9c4c1f1e3cbda5fb49247 (patch) | |
tree | 1f9d485af45e016deab5aee7d2b7592e99f1fd4b /usr.bin/ssh/channels.h | |
parent | Remove unneeded files. ok beck@ (diff) | |
download | wireguard-openbsd-e896ad7b655ca22b7df9c4c1f1e3cbda5fb49247.tar.xz wireguard-openbsd-e896ad7b655ca22b7df9c4c1f1e3cbda5fb49247.zip |
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 'usr.bin/ssh/channels.h')
-rw-r--r-- | usr.bin/ssh/channels.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/channels.h b/usr.bin/ssh/channels.h index 3aad0c1f181..977ddfe8541 100644 --- a/usr.bin/ssh/channels.h +++ b/usr.bin/ssh/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> @@ -78,6 +78,7 @@ struct Channel { int sock; /* sock fd */ int ctl_fd; /* control fd (client sharing) */ int isatty; /* rfd 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 |