mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 04:27:36 +03:00
Update u_parrots.go
This commit is contained in:
parent
d58d5f3578
commit
8323caabdf
1 changed files with 6 additions and 6 deletions
12
u_parrots.go
12
u_parrots.go
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue