mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
go vet fixes
This commit is contained in:
parent
f6ecfa941c
commit
3b53b610a6
2 changed files with 1 additions and 2 deletions
|
@ -444,5 +444,5 @@ func (uconn *UConn) GetOutKeystream(length int) ([]byte, error) {
|
||||||
// AEAD.Seal() does not mutate internal state, other ciphers might
|
// AEAD.Seal() does not mutate internal state, other ciphers might
|
||||||
return outCipher.Seal(nil, uconn.out.seq[:], zeros, nil), nil
|
return outCipher.Seal(nil, uconn.out.seq[:], zeros, nil), nil
|
||||||
}
|
}
|
||||||
return nil, errors.New("Could not convert OutCipher to cipher.AEAD")
|
return nil, errors.New("Could not convert OutCipher to cipher.AEAD")
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,6 @@ func (uconn *UConn) generateClientHelloConfig(id ClientHelloID) error {
|
||||||
default:
|
default:
|
||||||
return errors.New("Unknown ParrotID: " + id.Str())
|
return errors.New("Unknown ParrotID: " + id.Str())
|
||||||
}
|
}
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fills clientHello header(everything but extensions) fields, which are not set explicitly yet, with defaults
|
// Fills clientHello header(everything but extensions) fields, which are not set explicitly yet, with defaults
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue