mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 04:57:35 +03:00
Support randomized with non-nil seed in UTLSIdToSpec (#157)
This commit is contained in:
parent
5eb62ee120
commit
a3b55c90c4
1 changed files with 4 additions and 3 deletions
|
@ -1844,10 +1844,11 @@ func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, nil
|
}, nil
|
||||||
case HelloRandomized, HelloRandomizedALPN, HelloRandomizedNoALPN:
|
|
||||||
// Use empty values as they can be filled later by UConn.ApplyPreset or manually.
|
|
||||||
return generateRandomizedSpec(id, "", nil, nil)
|
|
||||||
default:
|
default:
|
||||||
|
if id.Client == helloRandomized || id.Client == helloRandomizedALPN || id.Client == helloRandomizedNoALPN {
|
||||||
|
// Use empty values as they can be filled later by UConn.ApplyPreset or manually.
|
||||||
|
return generateRandomizedSpec(id, "", nil, nil)
|
||||||
|
}
|
||||||
return ClientHelloSpec{}, errors.New("ClientHello ID " + id.Str() + " is unknown")
|
return ClientHelloSpec{}, errors.New("ClientHello ID " + id.Str() + " is unknown")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue