Modifier and Type | Interface and Description |
---|---|
interface |
DnsOptEcsRecord
An ECS record as defined in Client Subnet in DNS Queries.
|
interface |
DnsOptPseudoRecord
An OPT RR record.
|
interface |
DnsPtrRecord |
interface |
DnsQuestion
A DNS question.
|
interface |
DnsRawRecord
A generic
DnsRecord that contains an undecoded RDATA . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractDnsOptPseudoRrRecord
An OPT RR record.
|
class |
AbstractDnsRecord
A skeletal implementation of
DnsRecord . |
class |
DefaultDnsOptEcsRecord
Default
DnsOptEcsRecord implementation. |
class |
DefaultDnsPtrRecord |
class |
DefaultDnsQuestion
The default
DnsQuestion implementation. |
class |
DefaultDnsRawRecord
The default
DnsRawRecord implementation. |
Modifier and Type | Method and Description |
---|---|
<T extends DnsRecord> |
DnsRecordDecoder.decodeRecord(io.netty.buffer.ByteBuf in)
Decodes a DNS record into its object representation.
|
<T extends DnsRecord> |
DefaultDnsRecordDecoder.decodeRecord(io.netty.buffer.ByteBuf in) |
<T extends DnsRecord> |
DnsMessage.recordAt(DnsSection section)
Returns the first record in the specified
section of this DNS message. |
<T extends DnsRecord> |
AbstractDnsMessage.recordAt(DnsSection section) |
<T extends DnsRecord> |
DnsMessage.recordAt(DnsSection section,
int index)
Returns the record at the specified
index of the specified section of this DNS message. |
<T extends DnsRecord> |
AbstractDnsMessage.recordAt(DnsSection section,
int index) |
<T extends DnsRecord> |
DnsMessage.removeRecord(DnsSection section,
int index)
Removes the record at the specified
index of the specified section from this DNS message. |
<T extends DnsRecord> |
AbstractDnsMessage.removeRecord(DnsSection section,
int index) |
<T extends DnsRecord> |
DnsMessage.setRecord(DnsSection section,
int index,
DnsRecord record)
Sets the specified
record at the specified index of the specified section
of this DNS message. |
<T extends DnsRecord> |
AbstractDnsMessage.setRecord(DnsSection section,
int index,
DnsRecord record) |
Modifier and Type | Method and Description |
---|---|
protected DnsRecord |
DefaultDnsRecordDecoder.decodeRecord(String name,
DnsRecordType type,
int dnsClass,
long timeToLive,
io.netty.buffer.ByteBuf in,
int offset,
int length)
Decodes a record from the information decoded so far by
DefaultDnsRecordDecoder.decodeRecord(ByteBuf) . |
Modifier and Type | Method and Description |
---|---|
DnsResponse |
DnsResponse.addRecord(DnsSection section,
DnsRecord record) |
DnsQuery |
DnsQuery.addRecord(DnsSection section,
DnsRecord record) |
DnsMessage |
DnsMessage.addRecord(DnsSection section,
DnsRecord record)
Adds the specified
record at the end of the specified section of this DNS message. |
DnsResponse |
DefaultDnsResponse.addRecord(DnsSection section,
DnsRecord record) |
DnsQuery |
DefaultDnsQuery.addRecord(DnsSection section,
DnsRecord record) |
DatagramDnsResponse |
DatagramDnsResponse.addRecord(DnsSection section,
DnsRecord record) |
DatagramDnsQuery |
DatagramDnsQuery.addRecord(DnsSection section,
DnsRecord record) |
DnsMessage |
AbstractDnsMessage.addRecord(DnsSection section,
DnsRecord record) |
DnsResponse |
DnsResponse.addRecord(DnsSection section,
int index,
DnsRecord record) |
DnsQuery |
DnsQuery.addRecord(DnsSection section,
int index,
DnsRecord record) |
DnsMessage |
DnsMessage.addRecord(DnsSection section,
int index,
DnsRecord record)
Adds the specified
record at the specified index of the specified section
of this DNS message. |
DnsResponse |
DefaultDnsResponse.addRecord(DnsSection section,
int index,
DnsRecord record) |
DnsQuery |
DefaultDnsQuery.addRecord(DnsSection section,
int index,
DnsRecord record) |
DatagramDnsResponse |
DatagramDnsResponse.addRecord(DnsSection section,
int index,
DnsRecord record) |
DatagramDnsQuery |
DatagramDnsQuery.addRecord(DnsSection section,
int index,
DnsRecord record) |
DnsMessage |
AbstractDnsMessage.addRecord(DnsSection section,
int index,
DnsRecord record) |
void |
DnsRecordEncoder.encodeRecord(DnsRecord record,
io.netty.buffer.ByteBuf out)
Encodes a
DnsRecord . |
void |
DefaultDnsRecordEncoder.encodeRecord(DnsRecord record,
io.netty.buffer.ByteBuf out) |
DnsResponse |
DnsResponse.setRecord(DnsSection section,
DnsRecord record) |
DnsQuery |
DnsQuery.setRecord(DnsSection section,
DnsRecord record) |
DnsMessage |
DnsMessage.setRecord(DnsSection section,
DnsRecord record)
Sets the specified
section of this DNS message to the specified record ,
making it a single-record section. |
DnsResponse |
DefaultDnsResponse.setRecord(DnsSection section,
DnsRecord record) |
DnsQuery |
DefaultDnsQuery.setRecord(DnsSection section,
DnsRecord record) |
DatagramDnsResponse |
DatagramDnsResponse.setRecord(DnsSection section,
DnsRecord record) |
DatagramDnsQuery |
DatagramDnsQuery.setRecord(DnsSection section,
DnsRecord record) |
DnsMessage |
AbstractDnsMessage.setRecord(DnsSection section,
DnsRecord record) |
<T extends DnsRecord> |
DnsMessage.setRecord(DnsSection section,
int index,
DnsRecord record)
Sets the specified
record at the specified index of the specified section
of this DNS message. |
<T extends DnsRecord> |
AbstractDnsMessage.setRecord(DnsSection section,
int index,
DnsRecord record) |
Copyright © 2008–2018 The Netty Project. All rights reserved.