Query DHT Server(查询 DHT 服务器)
问题描述
我正在尝试对 DHT 服务器进行简单查询.
I'm trying to make a simple query to a DHT server.
我正在尝试做一个简单的示例来测试对服务器的查询,但我没有得到服务器以任何形式的响应...
I'm trying to make a simple simple example to test queries to the servers, but I don't get a response from the server in any form...
小例子:
$socket = fsockopen("udp://router.bittorrent.com", 6881, $errno, $errstr, 3);
fwrite($socket, 'p'); $Head = fread($socket, 4);
$CheckStatus = socket_get_status($socket);
if($CheckStatus["unread_bytes"] == 0)
{
return 0;
}
$do = 1;
while($do)
{
$str = fread($socket,1);
$stats .= $str;
$status = socket_get_status($socket);
if($status["unread_bytes"] == 0)
{
$do = 0;
}
}
fclose($socket);
关于 DHT 服务器查询的信息在这里:http://www.bittorrent.org/beps/bep_0005.html#dht-queries
The info about the queries in DHT server is here: http://www.bittorrent.org/beps/bep_0005.html#dht-queries
但我不明白如何使用 PHP 来实现.这可能吗?我的代码有什么问题?
But I don't understand how make this with PHP. Is this possible? What's the problem with my code?
推荐答案
正如 8472 提到的,您的客户端正在发送 p
,这不是一个有效的查询.要查看有效的查询格式,请查看此处:bep 005
As the8472 mentions, your client is sending p
, which is not a valid query. To see valid query formats, look here: bep 005
这篇关于查询 DHT 服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:查询 DHT 服务器
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Laravel 仓库 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01