mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00
12 lines
327 B
Text
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); };
|
|
}
|