Compare commits
No commits in common. "db8475053c08c1b7f20349cf294831b99e916f67" and "ad0ad73b0cde623801c6ee0081e37df1d2a38bf1" have entirely different histories.
db8475053c
...
ad0ad73b0c
@ -177,8 +177,8 @@ final class Binkp extends BaseProtocol
|
|||||||
|
|
||||||
$this->msgs(self::BPM_BSY,'RETRY 0600: Down for maintenance, back soon...');
|
$this->msgs(self::BPM_BSY,'RETRY 0600: Down for maintenance, back soon...');
|
||||||
|
|
||||||
// @note Sometimes the remote drops the connection when we send the busy
|
while ($this->tx_left || $this->mqueue->count())
|
||||||
while (($this->tx_left || $this->mqueue->count()) && $this->binkp_send()) {}
|
$this->binkp_send();
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
@ -49,11 +49,6 @@ class PacketDump extends Command
|
|||||||
throw new \Exception('Unknown type: '.$this->argument('type'));
|
throw new \Exception('Unknown type: '.$this->argument('type'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_null($pkt)) {
|
|
||||||
$this->info(sprintf('No packet for [%s] of type [%s]',$this->argument('ftn'),$this->argument('type')));
|
|
||||||
return self::SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! $this->argument('file')) {
|
if (! $this->argument('file')) {
|
||||||
$this->info('Item Name:'.$pkt->name);
|
$this->info('Item Name:'.$pkt->name);
|
||||||
$this->info('Item Type:'.get_class($pkt));
|
$this->info('Item Type:'.get_class($pkt));
|
||||||
|
Loading…
Reference in New Issue
Block a user