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. questionsThe 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. backendThe 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 QuestionQuestion. 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 DNSMessageDNSCache. get(Question q)Request a cached dns response.DNSMessageLRUCache. get(Question q)booleanRecord. isAnswer(Question q)Check if this record answers a given query.voidDNSCache. put(Question q, DNSMessage message)Add an an dns answer/response for a given dns question.voidLRUCache. put(Question q, DNSMessage message)DNSMessageClient. query(Question q)Query the system DNS server for one entry.DNSMessageClient. query(Question q, java.lang.String host)Query a specific server for one entry.DNSMessageClient. query(Question q, java.lang.String host, int port)Query a specific server for one entry.voidDNSMessage. 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)
-