This commit is contained in:
2022-12-18 18:14:03 +08:00
parent 3e75b4fe06
commit 6e7f755c66
108 changed files with 7514 additions and 1 deletions
@@ -0,0 +1,14 @@
<?php
namespace process;
use Workerman\Connection\TcpConnection;
class DnsProcess
{
public function onMessage($connection, $data)
{
echo "get";
$connection->send($data);
}
}