8566
8567
8568
8569
8570
8571
8572
8573
8574
8575
8576
8577
8578
8579
8580
|
8566
8567
8568
8569
8570
8571
8572
8573
8574
8575
8576
8577
8578
8579
8580
|
-
+
|
ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] =
ssh2_msg_channel_open_failure;
ssh->packet_dispatch[SSH2_MSG_CHANNEL_REQUEST] =
ssh2_msg_channel_request;
ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] =
ssh2_msg_channel_open;
if (ssh->cfg.ssh_simple) {
if (ssh->mainchan && ssh->cfg.ssh_simple) {
/*
* This message indicates to the server that we promise
* not to try to run any other channel in parallel with
* this one, so it's safe for it to advertise a very large
* window and leave the flow control to TCP.
*/
s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
|