mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
11 lines
102 B
Go
11 lines
102 B
Go
//go:build gofuzz
|
|
|
|
package http_proto
|
|
|
|
func Fuzz(data []byte) int {
|
|
|
|
ParseHeaders(data)
|
|
|
|
return 1
|
|
}
|