First
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace process;
|
||||
use Workerman\Connection\TcpConnection;
|
||||
use app\controller\DnsController;
|
||||
|
||||
class DnsProcess
|
||||
{
|
||||
|
||||
public function onMessage($connection, $data)
|
||||
{
|
||||
$data=json_decode($data);
|
||||
$type=$data->type; #查询类型
|
||||
$name=$data->name; #查询内容(一般是域名,PTR时为倒序IP)
|
||||
$rip=$connection->getRemoteIp(); #客户端IP
|
||||
|
||||
#输出信息
|
||||
#echo "\n Type:$type \n Domain: $name\n Client IP: $rip \n";
|
||||
|
||||
$dns=new DnsController;
|
||||
$return=$dns->DNS($type,$name,$rip,$data->id,$data->query);
|
||||
$connection->send($return);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user