mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
7 lines
183 B
Text
7 lines
183 B
Text
module QUIC;
|
|
|
|
export {
|
|
const version_strings: table[count] of string = {
|
|
[0x00000001] = "1",
|
|
} &default=function(version: count): string { return fmt("unknown-%x", version); };
|
|
}
|