This commit is contained in:
2022-12-24 22:10:40 +08:00
parent 84fc1030a7
commit 2a00928da5
4898 changed files with 429855 additions and 77 deletions
@@ -0,0 +1,18 @@
<?php
namespace process;
use Workerman\Connection\TcpConnection;
class DnsProcess
{
public function onMessage($connection, $data)
{
$data=json_decode($data);
$type=$data->type; #查询类型
$name=$data->name; #查询内容(一般是域名,PTR时为倒序IP)
$rip=$connection->getRemoteIp(); #客户端IP
$connection->send($return);
}
}