1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-04 02:28:06 +01:00

SSH2: CS adjustments

This commit is contained in:
terrafrost 2021-10-11 08:58:43 -05:00
parent 9a61525f44
commit 74f1c9ed7b

View File

@ -3756,7 +3756,7 @@ class Net_SSH2
if (!empty($this->channel_buffers[$client_channel])) { if (!empty($this->channel_buffers[$client_channel])) {
switch ($this->channel_status[$client_channel]) { switch ($this->channel_status[$client_channel]) {
case NET_SSH2_MSG_CHANNEL_REQUEST: case NET_SSH2_MSG_CHANNEL_REQUEST:
foreach ($this->channel_buffers[$client_channel] as $i=>$packet) { foreach ($this->channel_buffers[$client_channel] as $i => $packet) {
switch (ord($packet[0])) { switch (ord($packet[0])) {
case NET_SSH2_MSG_CHANNEL_SUCCESS: case NET_SSH2_MSG_CHANNEL_SUCCESS:
case NET_SSH2_MSG_CHANNEL_FAILURE: case NET_SSH2_MSG_CHANNEL_FAILURE: