mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
15 lines
No EOL
399 B
Text
15 lines
No EOL
399 B
Text
module NTP;
|
|
|
|
export {
|
|
## The descriptions of the NTP mode value, as described
|
|
## in :rfc:`5905`, Figure 1
|
|
const modes: table[count] of string = {
|
|
[1] = "symmetric active",
|
|
[2] = "symmetric passive",
|
|
[3] = "client",
|
|
[4] = "server",
|
|
[5] = "broadcast server",
|
|
[6] = "broadcast client",
|
|
[7] = "reserved",
|
|
} &default=function(i: count):string { return fmt("unknown-%d", i); } &redef;
|
|
} |