Files
goreplay/proto/fuzz.go
T
2016-12-27 17:16:29 +03:00

13 lines
178 B
Go

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