2021-08-23 10:35:48 +02:00
|
|
|
//go:build gofuzz
|
2020-01-29 02:20:35 +01:00
|
|
|
// +build gofuzz
|
|
|
|
|
|
|
|
package wtwirefuzz
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/lightningnetwork/lnd/watchtower/wtwire"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Fuzz_state_update_reply is used by go-fuzz.
|
|
|
|
func Fuzz_state_update_reply(data []byte) int {
|
|
|
|
// Prefix with MsgStateUpdateReply.
|
|
|
|
data = prefixWithMsgType(data, wtwire.MsgStateUpdateReply)
|
|
|
|
|
|
|
|
// Create an empty message so that the FuzzHarness func can check if the
|
|
|
|
// max payload constraint is violated.
|
|
|
|
emptyMsg := wtwire.StateUpdateReply{}
|
|
|
|
|
|
|
|
// Pass the message into our general fuzz harness for wire messages!
|
|
|
|
return harness(data, &emptyMsg)
|
|
|
|
}
|