mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
feat: UtlsIdToSpec
exported `utlsIdToSpec()` function per request.
This commit is contained in:
parent
ca829f62b8
commit
5279971277
1 changed files with 7 additions and 0 deletions
|
@ -14,6 +14,13 @@ import (
|
||||||
"strconv"
|
"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) {
|
func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
|
||||||
switch id {
|
switch id {
|
||||||
case HelloChrome_58, HelloChrome_62:
|
case HelloChrome_58, HelloChrome_62:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue