Files
goreplay/proto/fuzz.go
T
2017-01-23 13:34:57 +03:00

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
}