8923
8924
8925
8926
8927
8928
8929
8930
8931
8932
8933
8934
8935
8936
8937
8938
|
8923
8924
8925
8926
8927
8928
8929
8930
8931
8932
8933
8934
8935
8936
8937
|
-
-
+
|
Ssh ssh = (Ssh) handle;
if (ssh->version == 1) {
if (ssh->v1_stdout_throttling && bufsize < SSH1_BUFFER_LIMIT) {
ssh->v1_stdout_throttling = 0;
ssh1_throttle(ssh, -1);
}
} else {
if (ssh->mainchan && ssh->mainchan->closes == 0)
ssh2_set_window(ssh->mainchan, OUR_V2_WINSIZE - bufsize);
ssh2_set_window(ssh->mainchan, OUR_V2_WINSIZE - bufsize);
}
}
void ssh_send_port_open(void *channel, char *hostname, int port, char *org)
{
struct ssh_channel *c = (struct ssh_channel *)channel;
Ssh ssh = c->ssh;
|