mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
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:
parent
ca829f62b8
commit
9c1996abbb
1 changed files with 7 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue