mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
update golangci-lint action to v3, golangci-lint to v1.48.0 (#3499)
* run gofmt -s -w * stop using the deprecated io/ioutil package * update golangci-lint action to v3, golangci-lint to v1.48.0
This commit is contained in:
parent
7ebe1430ef
commit
498475fa60
20 changed files with 39 additions and 37 deletions
|
@ -7,7 +7,7 @@ import (
|
|||
"crypto/x509"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"log"
|
||||
"math"
|
||||
mrand "math/rand"
|
||||
|
@ -249,6 +249,7 @@ const (
|
|||
)
|
||||
|
||||
// Fuzz fuzzes the TLS 1.3 handshake used by QUIC.
|
||||
//
|
||||
//go:generate go run ./cmd/corpus.go
|
||||
func Fuzz(data []byte) int {
|
||||
if len(data) < PrefixLen {
|
||||
|
@ -353,10 +354,10 @@ func runHandshake(runConfig [confLen]byte, messageConfig uint8, clientConf *tls.
|
|||
serverConf.NextProtos = []string{alpnWrong, alpn}
|
||||
}
|
||||
if helper.NthBit(runConfig[3], 6) {
|
||||
serverConf.KeyLogWriter = ioutil.Discard
|
||||
serverConf.KeyLogWriter = io.Discard
|
||||
}
|
||||
if helper.NthBit(runConfig[3], 7) {
|
||||
clientConf.KeyLogWriter = ioutil.Discard
|
||||
clientConf.KeyLogWriter = io.Discard
|
||||
}
|
||||
clientTP := getTransportParameters(runConfig[4] & 0x3)
|
||||
if helper.NthBit(runConfig[4], 3) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue