mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-01 19:17:36 +03:00
22 lines
409 B
Go
22 lines
409 B
Go
package dicttls
|
|
|
|
// source: https://www.iana.org/assignments/comp-meth-ids/comp-meth-ids-2.csv
|
|
// last updated: March 2023
|
|
|
|
const (
|
|
CompMeth_NULL uint8 = 0
|
|
CompMeth_DEFLATE uint8 = 1
|
|
CompMeth_LZS uint8 = 64
|
|
)
|
|
|
|
var DictCompMethValueIndexed = map[uint8]string{
|
|
0: "NULL",
|
|
1: "DEFLATE",
|
|
64: "LZS",
|
|
}
|
|
|
|
var DictCompMethNameIndexed = map[string]uint8{
|
|
"NULL": 0,
|
|
"DEFLATE": 1,
|
|
"LZS": 64,
|
|
}
|