mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 10:13:14 -04:00 
			
		
		
		
	* doc: some function/vars/const/package level updates Various update that stood out while reading godoc.org for CoreDNS. * Fix some misspellings as well
		
			
				
	
	
		
			27 lines
		
	
	
		
			554 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			554 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Package fuzz contains functions that enable fuzzing of plugins.
 | |
| package fuzz
 | |
| 
 | |
| import (
 | |
| 	"github.com/coredns/coredns/plugin"
 | |
| 	"github.com/coredns/coredns/plugin/test"
 | |
| 
 | |
| 	"github.com/miekg/dns"
 | |
| 	"golang.org/x/net/context"
 | |
| )
 | |
| 
 | |
| // Do will fuzz p - used by gofuzz. See Maefile.fuzz for comments and context.
 | |
| func Do(p plugin.Handler, data []byte) int {
 | |
| 	ctx := context.TODO()
 | |
| 	ret := 1
 | |
| 	r := new(dns.Msg)
 | |
| 	if err := r.Unpack(data); err != nil {
 | |
| 		ret = 0
 | |
| 	}
 | |
| 
 | |
| 	if _, err := p.ServeDNS(ctx, &test.ResponseWriter{}, r); err != nil {
 | |
| 		ret = 1
 | |
| 	}
 | |
| 
 | |
| 	return ret
 | |
| }
 |