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

This commit is contained in:
Deon George 2025-01-30 23:48:11 +11:00
parent 0189b091ab
commit e8ad0b60dd

View File

@ -960,6 +960,9 @@ final class EMSI extends BaseProtocol implements CRCInterface,ZmodemInterface
$this->client->iac_bin = true; $this->client->iac_bin = true;
} }
$iaccmd = NULL;
break;
case 0xfb: case 0xfb:
Log::debug(sprintf('%s: - IAC WILL [%02x]',self::LOGKEY,ord($iac))); Log::debug(sprintf('%s: - IAC WILL [%02x]',self::LOGKEY,ord($iac)));
$iaccmd = ord($iac); $iaccmd = ord($iac);
@ -973,9 +976,15 @@ final class EMSI extends BaseProtocol implements CRCInterface,ZmodemInterface
default: default:
Log::debug(sprintf('%s: - IAC [%02x]',self::LOGKEY,ord($iac))); Log::debug(sprintf('%s: - IAC [%02x]',self::LOGKEY,ord($iac)));
$ch = $iac;
$iac = NULL; $iac = NULL;
} }
if ($iaccmd) {
$iac = $this->client->read(10,1);
$ch = NULL;
}
} while (! is_null($iac)); } while (! is_null($iac));
} }