Update u_parrots.go

This commit is contained in:
RPRX 2023-02-06 12:39:50 +08:00 committed by GitHub
parent d58d5f3578
commit 8323caabdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2087,12 +2087,6 @@ func generateRandomizedSpec(
) (ClientHelloSpec, error) {
p := ClientHelloSpec{}
value, ok := WeightsMap.Load(id.Version)
if !ok {
return p, fmt.Errorf("can not find weights for %v", id.Version)
}
weights := value.(Weights)
if id.Seed == nil {
seed, err := NewPRNGSeed()
if err != nil {
@ -2106,6 +2100,12 @@ func generateRandomizedSpec(
return p, err
}
value, ok := WeightsMap.Load(id.Version)
if !ok {
return p, fmt.Errorf("failed to load Weights for Version %v from WeightsMap", id.Version)
}
weights := value.(Weights)
var WithALPN bool
switch id.Client {
case helloRandomizedALPN: