aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/measite/minidns/Client.java (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-06-23Add missing javadoc / missing getter (getTTL)Rene Treffer1-2/+6
2014-06-13Switch to deticated DNSCache interface + reference LRU implementation.Rene Treffer1-72/+14
2014-06-12Simplify cache and extend cache operations.Rene Treffer1-9/+78
Remove the external cache dependency and use a simple LRU based on LinkedHashMap. Make it possible to get the parse time of DNSMessage, which means we can evaluate the TTL later on :-)
2014-06-12Add Cache to minidnsFlorian Schmaus1-14/+29
2014-06-08Log IOExceptionFlorian Schmaus1-0/+1
2014-06-08Remove printStackTrace() callsFlorian Schmaus1-2/+3
it's hard to assign those an app in the Android log. Better to use JUL.
2014-06-08Close DatagramSocket using try-with-resourcesFlorian Schmaus1-11/+12
2014-06-08Make minidns Android agnosticFlorian Schmaus1-7/+6
there is really no need for minidns to be Android exclusive. Replacing the Android log API with JUL make minidns available for Android and Java SE.
2014-04-03Allow querying specific dns server by name/ip and portRene Treffer1-3/+44
2014-04-02Try various ways to get the dns settingsRene Treffer1-1/+90