This dependency now uses SemVer, tagged releases. Also updates dependencies Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 4acddf21b7c11c2c6a71f0f9ba1d329cfbb99e5f Component: engine
24 lines
307 B
Go
24 lines
307 B
Go
// +build fuzz
|
|
|
|
package dns
|
|
|
|
func Fuzz(data []byte) int {
|
|
msg := new(Msg)
|
|
|
|
if err := msg.Unpack(data); err != nil {
|
|
return 0
|
|
}
|
|
if _, err := msg.Pack(); err != nil {
|
|
return 0
|
|
}
|
|
|
|
return 1
|
|
}
|
|
|
|
func FuzzNewRR(data []byte) int {
|
|
if _, err := NewRR(string(data)); err != nil {
|
|
return 0
|
|
}
|
|
return 1
|
|
}
|