mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
change package from `main -> goreplay` this will allow importing `goreplay` as a package
11 lines
97 B
Go
11 lines
97 B
Go
//go:build gofuzz
|
|
|
|
package proto
|
|
|
|
func Fuzz(data []byte) int {
|
|
|
|
ParseHeaders(data)
|
|
|
|
return 1
|
|
}
|