Merge remote-tracking branch 'klemensya/svcparams'

* klemensya/svcparams:
  Parse SVCB/HTTPS SvcParams list
This commit is contained in:
Tim Wojtulewicz 2025-09-03 15:35:49 -07:00
commit 7142b9efde
11 changed files with 258 additions and 33 deletions

View file

@ -0,0 +1,10 @@
# @TEST-EXEC: zeek -r $TRACES/dns/ech.pcap %INPUT > output
# @TEST-EXEC: btest-diff output
@load policy/protocols/dns/auth-addl
event dns_HTTPS(c: connection, msg: dns_msg, ans: dns_answer, https: dns_svcb_rr)
{
for (_, param in https$svc_params)
print param;
}