Switch from glide to dep. Check in vendor/

This commit is contained in:
Ryan Boehning 2018-01-11 13:38:50 -08:00
parent 9a3cd91cd7
commit f44e11fa65
498 changed files with 74787 additions and 32 deletions

23
vendor/github.com/miekg/dns/fuzz.go generated vendored Normal file
View file

@ -0,0 +1,23 @@
// +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
}