21 lines
480 B
Go
21 lines
480 B
Go
// +build gofuzz
|
|
|
|
package lnwirefuzz
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
)
|
|
|
|
// Fuzz_pong is used by go-fuzz.
|
|
func Fuzz_pong(data []byte) int {
|
|
// Prefix with MsgPong.
|
|
data = prefixWithMsgType(data, lnwire.MsgPong)
|
|
|
|
// Create an empty message so that the FuzzHarness func can check
|
|
// if the max payload constraint is violated.
|
|
emptyMsg := lnwire.Pong{}
|
|
|
|
// Pass the message into our general fuzz harness for wire messages!
|
|
return harness(data, &emptyMsg)
|
|
}
|