Files
goreplay/vendor/github.com/buger/gor-pro/proto/fuzz.go
T

13 lines
165 B
Go

// +build gofuzz
package proto
func Fuzz(data []byte) int {
ParseHeaders([][]byte{data}, func(header []byte, value []byte) bool {
return true
})
return 1
}