1
0
mirror of https://github.com/danog/dns.git synced 2024-12-02 09:27:55 +01:00
This commit is contained in:
Daniil Gentili 2019-08-22 22:48:56 +02:00
parent 9f39244e3c
commit 0a90926342

View File

@ -97,10 +97,7 @@ class NativeDecoder
{
/** @var \LibDNS\Records\Types\DomainName $domainName */
$domainName = $this->typeBuilder->build(Types::DOMAIN_NAME);
$labels = \explode('.', $name);
if ('' !== $last = \array_pop($labels)) {
$labels[] = $last;
}
$labels = \explode('.', rtrim($name, '.'));
$domainName->setLabels($labels);
$question = $this->questionFactory->create($type);
@ -190,10 +187,7 @@ class NativeDecoder
if (!$encodingContext->isTruncated()) {
/** @var \LibDNS\Records\Types\DomainName $domainName */
$domainName = $this->typeBuilder->build(Types::DOMAIN_NAME);
$labels = \explode('.', $record['host']);
if ('' !== $last = \array_pop($labels)) {
$labels[] = $last;
}
$labels = \explode('.', rtrim($record['host'], '.'));
$domainName->setLabels($labels);
$packet = $encodingContext->getPacket();