Fix for 3b7ce4b
, change where setup is defined for our protocols
This commit is contained in:
@@ -50,7 +50,7 @@ class ServerStart extends Command
|
||||
'address'=>$o->binkp_bind,
|
||||
'port'=>$o->binkp_port,
|
||||
'proto'=>SOCK_STREAM,
|
||||
'class'=>new Binkp($o),
|
||||
'class'=>new Binkp,
|
||||
]);
|
||||
|
||||
if ($o->emsi_active)
|
||||
@@ -58,7 +58,7 @@ class ServerStart extends Command
|
||||
'address'=>$o->emsi_bind,
|
||||
'port'=>$o->emsi_port,
|
||||
'proto'=>SOCK_STREAM,
|
||||
'class'=>new EMSI($o),
|
||||
'class'=>new EMSI,
|
||||
]);
|
||||
|
||||
if ($o->dns_active)
|
||||
@@ -66,7 +66,7 @@ class ServerStart extends Command
|
||||
'address'=>$o->dns_bind,
|
||||
'port'=>$o->dns_port,
|
||||
'proto'=>SOCK_DGRAM,
|
||||
'class'=>new DNS(),
|
||||
'class'=>new DNS,
|
||||
]);
|
||||
|
||||
$children = collect();
|
||||
|
Reference in New Issue
Block a user