Revert "改名"

This reverts commit fdf58326
This commit is contained in:
2022-01-11 15:38:06 +08:00
parent 6565f1d7a3
commit c94883375a
-7
View File
@@ -110,13 +110,6 @@ class AsyncClient extends ClientAbstracts
$this->client->send(implode("\r\n", $array) . "\r\n\r\n" . $content);
$receive = $this->client->recv();
while (true) {
$tmp = $this->client->recv();
if (empty($tmp)) {
break;
}
$receive .= $tmp;
}
Kiri::getDi()->get(Logger::class)->debug($receive);
[$header, $body] = explode("\r\n\r\n", $receive);