52 lines
1002 B
PHP
52 lines
1002 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Console\Commands;
|
||
|
|
||
|
use Illuminate\Console\Command;
|
||
|
use Illuminate\Support\Facades\Log;
|
||
|
|
||
|
use App\Classes\Sock\SocketException;
|
||
|
use App\Classes\Sock\SocketServer;
|
||
|
|
||
|
use App\Classes\Protocol\Binkd as BinkdClass;
|
||
|
|
||
|
class BinkpReceive extends Command
|
||
|
{
|
||
|
/**
|
||
|
* The name and signature of the console command.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $signature = 'binkp:receive';
|
||
|
|
||
|
/**
|
||
|
* The console command description.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $description = 'BINKP receive';
|
||
|
|
||
|
/**
|
||
|
* Execute the console command.
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function handle()
|
||
|
{
|
||
|
Log::info('Listening for BINKP connections...');
|
||
|
|
||
|
$server = new SocketServer(24554,'0.0.0.0');
|
||
|
$server->setConnectionHandler([new BinkdClass,'onConnect']);
|
||
|
|
||
|
try {
|
||
|
$server->listen();
|
||
|
|
||
|
} catch (SocketException $e) {
|
||
|
if ($e->getMessage() == 'Can\'t accept connections: "Success"')
|
||
|
Log::debug('Server Terminated');
|
||
|
else
|
||
|
Log::emergency('Uncaught Message: '.$e->getMessage());
|
||
|
}
|
||
|
}
|
||
|
}
|