about summary refs log tree commit diff
path: root/lisp/dns/client.lisp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-01-27 r/466 refactor(lisp/dns): Return dns-answer from query functionsVincent Ambo1-1/+2
2020-01-27 r/464 feat(lisp/dns): Support CNAME & NS record RDATAsVincent Ambo1-0/+8
2020-01-27 r/463 refactor(lisp/dns): Refactor structure of lookup-generic callsVincent Ambo1-9/+12
2020-01-26 feat(lisp/dns): Use new DNS deserialiser in dns:lookup-genericVincent Ambo1-152/+52
This enables arbitrary DNS lookups (with the caveat that RRDATAs are currently not deserialised into a record-type-specific format). An error condition has been defined for error-responses from the HTTP server which provides interactive restarts for attempting a new call with different parameters.
2020-01-26 refactor(lisp/dns): Split package into multiple filesVincent Ambo1-0/+173
Adds a package definition file and moves the current client into client.lisp Note that the client is not working at all at this commit as this is a work-in-progress snapshot.