@UnstableApi public class DefaultDnsResponse extends AbstractDnsMessage implements DnsResponse
DnsResponse
implementation.构造器和说明 |
---|
DefaultDnsResponse(int id)
|
DefaultDnsResponse(int id,
DnsOpCode opCode)
Creates a new instance with the
DnsResponseCode.NOERROR RCODE . |
DefaultDnsResponse(int id,
DnsOpCode opCode,
DnsResponseCode code)
Creates a new instance.
|
限定符和类型 | 方法和说明 |
---|---|
DnsResponse |
addRecord(DnsSection section,
DnsRecord record)
Adds the specified
record at the end of the specified section of this DNS message. |
DnsResponse |
addRecord(DnsSection section,
int index,
DnsRecord record)
Adds the specified
record at the specified index of the specified section
of this DNS message. |
DnsResponse |
clear()
Removes all the records in this DNS message.
|
DnsResponse |
clear(DnsSection section)
Removes all the records in the specified
section of this DNS message. |
DnsResponseCode |
code()
Returns the 4 bit return code.
|
boolean |
isAuthoritativeAnswer()
Returns
true if responding server is authoritative for the domain
name in the query message. |
boolean |
isRecursionAvailable()
Returns
true if DNS server can handle recursive queries. |
boolean |
isTruncated()
Returns
true if response has been truncated, usually if it is
over 512 bytes. |
DnsResponse |
retain()
Increases the reference count by
1 . |
DnsResponse |
retain(int increment)
Increases the reference count by the specified
increment . |
DnsResponse |
setAuthoritativeAnswer(boolean authoritativeAnswer)
Set to
true if responding server is authoritative for the domain
name in the query message. |
DnsResponse |
setCode(DnsResponseCode code)
Sets the response code for this message.
|
DnsResponse |
setId(int id)
Sets the
ID of this DNS message. |
DnsResponse |
setOpCode(DnsOpCode opCode)
Sets the
opCode of this DNS message. |
DnsResponse |
setRecord(DnsSection section,
DnsRecord record)
Sets the specified
section of this DNS message to the specified record ,
making it a single-record section. |
DnsResponse |
setRecursionAvailable(boolean recursionAvailable)
Set to
true if DNS server can handle recursive queries. |
DnsResponse |
setRecursionDesired(boolean recursionDesired)
Sets the
RD (recursion desired} field of this DNS message. |
DnsResponse |
setTruncated(boolean truncated)
Set to
true if response has been truncated (usually happens for
responses over 512 bytes). |
DnsResponse |
setZ(int z)
Sets the
Z (reserved for future use) field of this DNS message. |
java.lang.String |
toString() |
DnsResponse |
touch()
Records the current access location of this object for debugging purposes.
|
DnsResponse |
touch(java.lang.Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
count, count, deallocate, equals, hashCode, id, isRecursionDesired, opCode, recordAt, recordAt, removeRecord, setRecord, z
refCnt, release, release, setRefCnt
count, count, id, isRecursionDesired, opCode, recordAt, recordAt, removeRecord, setRecord, z
refCnt, release, release
public DefaultDnsResponse(int id)
id
- the ID
of the DNS responsepublic DefaultDnsResponse(int id, DnsOpCode opCode)
DnsResponseCode.NOERROR
RCODE
.id
- the ID
of the DNS responseopCode
- the opCode
of the DNS responsepublic DefaultDnsResponse(int id, DnsOpCode opCode, DnsResponseCode code)
id
- the ID
of the DNS responseopCode
- the opCode
of the DNS responsecode
- the RCODE
of the DNS responsepublic boolean isAuthoritativeAnswer()
DnsResponse
true
if responding server is authoritative for the domain
name in the query message.isAuthoritativeAnswer
在接口中 DnsResponse
public DnsResponse setAuthoritativeAnswer(boolean authoritativeAnswer)
DnsResponse
true
if responding server is authoritative for the domain
name in the query message.setAuthoritativeAnswer
在接口中 DnsResponse
authoritativeAnswer
- flag for authoritative answerpublic boolean isTruncated()
DnsResponse
true
if response has been truncated, usually if it is
over 512 bytes.isTruncated
在接口中 DnsResponse
public DnsResponse setTruncated(boolean truncated)
DnsResponse
true
if response has been truncated (usually happens for
responses over 512 bytes).setTruncated
在接口中 DnsResponse
truncated
- flag for truncationpublic boolean isRecursionAvailable()
DnsResponse
true
if DNS server can handle recursive queries.isRecursionAvailable
在接口中 DnsResponse
public DnsResponse setRecursionAvailable(boolean recursionAvailable)
DnsResponse
true
if DNS server can handle recursive queries.setRecursionAvailable
在接口中 DnsResponse
recursionAvailable
- flag for recursion availabilitypublic DnsResponseCode code()
DnsResponse
code
在接口中 DnsResponse
public DnsResponse setCode(DnsResponseCode code)
DnsResponse
setCode
在接口中 DnsResponse
code
- the response codepublic DnsResponse setId(int id)
DnsMessage
ID
of this DNS message.setId
在接口中 DnsMessage
setId
在接口中 DnsResponse
setId
在类中 AbstractDnsMessage
public DnsResponse setOpCode(DnsOpCode opCode)
DnsMessage
opCode
of this DNS message.setOpCode
在接口中 DnsMessage
setOpCode
在接口中 DnsResponse
setOpCode
在类中 AbstractDnsMessage
public DnsResponse setRecursionDesired(boolean recursionDesired)
DnsMessage
RD
(recursion desired} field of this DNS message.setRecursionDesired
在接口中 DnsMessage
setRecursionDesired
在接口中 DnsResponse
setRecursionDesired
在类中 AbstractDnsMessage
public DnsResponse setZ(int z)
DnsMessage
Z
(reserved for future use) field of this DNS message.setZ
在接口中 DnsMessage
setZ
在接口中 DnsResponse
setZ
在类中 AbstractDnsMessage
public DnsResponse setRecord(DnsSection section, DnsRecord record)
DnsMessage
section
of this DNS message to the specified record
,
making it a single-record section. When the specified section
is DnsSection.QUESTION
,
the specified record
must be a DnsQuestion
.setRecord
在接口中 DnsMessage
setRecord
在接口中 DnsResponse
setRecord
在类中 AbstractDnsMessage
public DnsResponse addRecord(DnsSection section, DnsRecord record)
DnsMessage
record
at the end of the specified section
of this DNS message.
When the specified section
is DnsSection.QUESTION
, the specified record
must be a DnsQuestion
.addRecord
在接口中 DnsMessage
addRecord
在接口中 DnsResponse
addRecord
在类中 AbstractDnsMessage
public DnsResponse addRecord(DnsSection section, int index, DnsRecord record)
DnsMessage
record
at the specified index
of the specified section
of this DNS message. When the specified section
is DnsSection.QUESTION
, the specified
record
must be a DnsQuestion
.addRecord
在接口中 DnsMessage
addRecord
在接口中 DnsResponse
addRecord
在类中 AbstractDnsMessage
public DnsResponse clear(DnsSection section)
DnsMessage
section
of this DNS message.clear
在接口中 DnsMessage
clear
在接口中 DnsResponse
clear
在类中 AbstractDnsMessage
public DnsResponse clear()
DnsMessage
clear
在接口中 DnsMessage
clear
在接口中 DnsResponse
clear
在类中 AbstractDnsMessage
public DnsResponse touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
在接口中 DnsMessage
touch
在接口中 DnsResponse
touch
在接口中 ReferenceCounted
touch
在类中 AbstractDnsMessage
public DnsResponse touch(java.lang.Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
在接口中 DnsMessage
touch
在接口中 DnsResponse
touch
在接口中 ReferenceCounted
touch
在类中 AbstractDnsMessage
public DnsResponse retain()
ReferenceCounted
1
.retain
在接口中 DnsMessage
retain
在接口中 DnsResponse
retain
在接口中 ReferenceCounted
retain
在类中 AbstractDnsMessage
public DnsResponse retain(int increment)
ReferenceCounted
increment
.retain
在接口中 DnsMessage
retain
在接口中 DnsResponse
retain
在接口中 ReferenceCounted
retain
在类中 AbstractDnsMessage
public java.lang.String toString()
toString
在类中 java.lang.Object