summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDNS
AgeCommit message (Collapse)Author
2022-04-15LibDNS: Remove the 'DNS' prefix from the various type and class namesTom
Since all types and class names live in the DNS namespace, we don't need to spell it out twice each time.
2022-04-15LibDNS: Add IPC encoder/decoder for the DNSAnswer classTom
2022-04-15LibDNS: Implement Traits for DNSAnswer classTom
This enables DNSAnswer instances being used e.g. in a HashTable for caching purposes.
2022-04-15LookupServer: Move DNS related code into new LibDNS libraryTom
This allows other code to use the DNSPacket class, e.g. when sent over IPC.