mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:17:44 +00:00
LookupServer: Handle DNS record types TXT, AAAA, SRV and CNAME
They're not being used elsewhere at the moment but this gets rid of the debug message for incoming mDNS response packets.
This commit is contained in:
parent
7b3bed7910
commit
a569381037
3 changed files with 20 additions and 0 deletions
|
@ -20,6 +20,9 @@ enum class DNSRecordType : u16 {
|
|||
SOA = 6,
|
||||
PTR = 12,
|
||||
MX = 15,
|
||||
TXT = 16,
|
||||
AAAA = 28,
|
||||
SRV = 33,
|
||||
};
|
||||
|
||||
enum class DNSRecordClass : u16 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue