IAC binary
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 38s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m33s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s

This commit is contained in:
Deon George 2025-01-31 00:10:20 +11:00
parent a281ca9df7
commit 5f217291c5

View File

@ -999,11 +999,16 @@ final class EMSI extends BaseProtocol implements CRCInterface,ZmodemInterface
} }
if ($iaccmd) { if ($iaccmd) {
$iac = ord($this->client->read(10,1)); $iac = $this->client->read_ch(10);
$ch = NULL; $ch = NULL;
} elseif (is_null($ch)) {
$ch = $this->client->read_ch(10);
} }
} while (! is_null($iac)); } while (! is_null($iac));
Log::debug(sprintf('%s:- Leaving IAC with [%02x]',self::LOGKEY,$ch),['ch'=>serialize($ch)]);
} }
if (($ch != self::TIMEOUT) && ($ch < 0)) if (($ch != self::TIMEOUT) && ($ch < 0))