mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
13 lines
165 B
Go
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
|
|
}
|