We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54592ba commit d9009dfCopy full SHA for d9009df
1 file changed
src/PurplePixie/PhpDns/DNSQuery.php
@@ -197,6 +197,7 @@ private function readRecord(): array
197
$domain = $this->readDomainLabel();
198
199
$ans_header_bin = $this->readResponse(10); // 10 byte header
200
+
201
$ans_header = unpack('ntype/nclass/Nttl/nlength', $ans_header_bin);
202
203
$this->debug(
@@ -236,6 +237,7 @@ private function readRecord(): array
236
237
238
case DNSTypes::ID_DNSKEY:
239
case DNSTypes::ID_KEY:
240
+ case DNSTypes::ID_DS:
241
$stuff = $this->readResponse(4);
242
243
// key type test 21/02/2014 DC
0 commit comments