Uses of Class
de.measite.minidns.Question
-
Packages that use Question Package Description de.measite.minidns -
-
Uses of Question in de.measite.minidns
Fields in de.measite.minidns declared as Question Modifier and Type Field Description protected Question[]
DNSMessage. questions
The question section content.Fields in de.measite.minidns with type parameters of type Question Modifier and Type Field Description protected java.util.LinkedHashMap<Question,DNSMessage>
LRUCache. backend
The backend cache.Methods in de.measite.minidns that return Question Modifier and Type Method Description Question[]
DNSMessage. getQuestions()
Retrieve the question section of this message.static Question
Question. parse(java.io.DataInputStream dis, byte[] data)
Parse a byte array and rebuild the dns question from it.Methods in de.measite.minidns with parameters of type Question Modifier and Type Method Description DNSMessage
DNSCache. get(Question q)
Request a cached dns response.DNSMessage
LRUCache. get(Question q)
boolean
Record. isAnswer(Question q)
Check if this record answers a given query.void
DNSCache. put(Question q, DNSMessage message)
Add an an dns answer/response for a given dns question.void
LRUCache. put(Question q, DNSMessage message)
DNSMessage
Client. query(Question q)
Query the system DNS server for one entry.DNSMessage
Client. query(Question q, java.lang.String host)
Query a specific server for one entry.DNSMessage
Client. query(Question q, java.lang.String host, int port)
Query a specific server for one entry.void
DNSMessage. setQuestions(Question... questions)
Set the question part of this message.Constructor parameters in de.measite.minidns with type arguments of type Question Constructor Description Client(java.util.Map<Question,DNSMessage> cache)
-