Uses of Class
io.netty.handler.codec.dns.DnsOpCode
Packages that use DnsOpCode
-
Uses of DnsOpCode in io.netty.handler.codec.dns
Fields in io.netty.handler.codec.dns declared as DnsOpCodeModifier and TypeFieldDescriptionstatic final DnsOpCode
DnsOpCode.IQUERY
The 'IQuery' DNS OpCode, as defined in RFC1035.static final DnsOpCode
DnsOpCode.NOTIFY
The 'Notify' DNS OpCode, as defined in RFC1996.private DnsOpCode
AbstractDnsMessage.opCode
static final DnsOpCode
DnsOpCode.QUERY
The 'Query' DNS OpCode, as defined in RFC1035.static final DnsOpCode
DnsOpCode.STATUS
The 'Status' DNS OpCode, as defined in RFC1035.static final DnsOpCode
DnsOpCode.UPDATE
The 'Update' DNS OpCode, as defined in RFC2136.Methods in io.netty.handler.codec.dns that return DnsOpCodeModifier and TypeMethodDescriptionAbstractDnsMessage.opCode()
DnsMessage.opCode()
Returns theopCode
of this DNS message.static DnsOpCode
DnsOpCode.valueOf
(int b) Returns theDnsOpCode
instance of the specified byte value.Methods in io.netty.handler.codec.dns with parameters of type DnsOpCodeModifier and TypeMethodDescriptionint
protected abstract DnsResponse
DnsResponseDecoder.newResponse
(A sender, A recipient, int id, DnsOpCode opCode, DnsResponseCode responseCode) Sets theopCode
of this DNS message.Constructors in io.netty.handler.codec.dns with parameters of type DnsOpCodeModifierConstructorDescriptionprotected
AbstractDnsMessage
(int id, DnsOpCode opCode) Creates a new instance with the specifiedid
andopCode
.DatagramDnsQuery
(InetSocketAddress sender, InetSocketAddress recipient, int id, DnsOpCode opCode) Creates a new instance.DatagramDnsResponse
(InetSocketAddress sender, InetSocketAddress recipient, int id, DnsOpCode opCode) Creates a new instance with theDnsResponseCode.NOERROR
responseCode.DatagramDnsResponse
(InetSocketAddress sender, InetSocketAddress recipient, int id, DnsOpCode opCode, DnsResponseCode responseCode) Creates a new instance.DefaultDnsQuery
(int id, DnsOpCode opCode) Creates a new instance.DefaultDnsResponse
(int id, DnsOpCode opCode) Creates a new instance with theDnsResponseCode.NOERROR
RCODE
.DefaultDnsResponse
(int id, DnsOpCode opCode, DnsResponseCode code) Creates a new instance.