Source File
comp_meth_ids.go
Belonging Package
github.com/refraction-networking/utls/dicttls
package dicttls// source: https://www.iana.org/assignments/comp-meth-ids/comp-meth-ids-2.csv// last updated: March 2023const (CompMeth_NULL uint8 = 0CompMeth_DEFLATE uint8 = 1CompMeth_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,}
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |