Exports utlsIdToSpec() as UTLSIdToSpec() (#136)

* feat: UtlsIdToSpec

exported `utlsIdToSpec()` function per request.

* chore: func naming and comments

Fixed typo in comments.
This commit is contained in:
Gaukas Wang 2022-11-01 11:48:05 -06:00 committed by GitHub
parent ca829f62b8
commit 9c1996abbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,13 @@ import (
"strconv"
)
// UTLSIdToSpec 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: