summaryrefslogtreecommitdiff
path: root/Userland/Services/LookupServer/DNSAnswer.cpp
AgeCommit message (Collapse)Author
2021-05-10LookupServer: Track the receive timestamp for DNS answersGunnar Beutner
2021-05-10LookupServer: Handle DNS record types TXT, AAAA, SRV and CNAMEGunnar Beutner
They're not being used elsewhere at the moment but this gets rid of the debug message for incoming mDNS response packets.
2021-05-10LookupServer: Turn #defines into enum classes and add formatterGunnar Beutner
2021-05-10LookupServer: Split mDNS flags into separate fieldGunnar Beutner
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-02-15LookupServer: Introduce DNSNameSergey Bugaev
This is a wrapper around a string representing a domain name (such as "example.com"). It never has a trailing dot. For now, this class doesn't do much except wrap the raw string. Subsequent commits will add or move more functionality to it.
2021-02-06LookupServer: Move into `LookupServer` namespaceSergey Bugaev
2021-01-12Services: Move to Userland/Services/Andreas Kling