feat: UtlsIdToSpec

exported `utlsIdToSpec()` function per request.
This commit is contained in:
Gaukas Wang 2022-11-01 11:43:16 -06:00
parent ca829f62b8
commit 5279971277
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -14,6 +14,13 @@ import (
"strconv"
)
// UtlsIdSpec converts a ClientHelloID to a corresponding ClientHelloSpec.
//
// Exported internal function utlsIdToSpec per request.
func UtlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
return utlsIdToSpec(id)
}
func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
switch id {
case HelloChrome_58, HelloChrome_62: