浏览代码

Merge pull request #44475 from nextcloud/fix/disabled-ipv6

tags/v29.0.0beta6
Benjamin Gaussorgues 2 个月前
父节点
当前提交
f8d1487dcd
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      lib/private/Http/Client/DnsPinMiddleware.php

+ 3
- 1
lib/private/Http/Client/DnsPinMiddleware.php 查看文件

@@ -75,7 +75,9 @@ class DnsPinMiddleware {
$soaDnsEntry = $this->soaRecord($target);
$dnsNegativeTtl = $soaDnsEntry['minimum-ttl'] ?? null;

$dnsTypes = [DNS_A, DNS_AAAA, DNS_CNAME];
$dnsTypes = \defined('AF_INET6') || @inet_pton('::1')
? [DNS_A, DNS_AAAA, DNS_CNAME]
: [DNS_A, DNS_CNAME];
foreach ($dnsTypes as $dnsType) {
if ($this->negativeDnsCache->isNegativeCached($target, $dnsType)) {
continue;

正在加载...
取消
保存