forked from openssh/openssh-portable
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [email protected] 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
- Loading branch information
Showing
4 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,12 @@ | |
- [email protected] 2004/10/20 11:48:53 | ||
[packet.c ssh1.h] | ||
disconnect for invalid (out of range) message types. | ||
- [email protected] 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 | ||
|
||
20041102 | ||
- (dtucker) [configure.ac includes.h] Bug #947: Fix compile error on HP-UX | ||
|
@@ -1824,4 +1830,4 @@ | |
- (djm) Trim deprecated options from INSTALL. Mention UsePAM | ||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | ||
|
||
$Id: ChangeLog,v 1.3574 2004/11/05 09:27:54 dtucker Exp $ | ||
$Id: ChangeLog,v 1.3575 2004/11/05 09:35:44 dtucker Exp $ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters