zeek/scripts/base/protocols/dhcpv6/consts.zeek
2025-05-25 16:31:25 +02:00

12 lines
327 B
Text

module DHCPv6;
export {
const message_types = {
[1] = "SOLICIT",
} &default = function(n: count): string { return fmt("unknown-message-type-%d", n); };
## Option types mapped to their names.
const option_types = {
[1] = "???",
} &default = function(n: count): string { return fmt("unknown-option-type-%d", n); };
}