mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-30 09:43:17 -04:00 
			
		
		
		
	
		
			
	
	
		
			27 lines
		
	
	
		
			806 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			27 lines
		
	
	
		
			806 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package proxy
 | ||
|  | 
 | ||
|  | import (
 | ||
|  | 	"errors"
 | ||
|  | )
 | ||
|  | 
 | ||
|  | var (
 | ||
|  | 	// ErrNoHealthy means no healthy proxies left.
 | ||
|  | 	ErrNoHealthy = errors.New("no healthy proxies")
 | ||
|  | 	// ErrNoForward means no forwarder defined.
 | ||
|  | 	ErrNoForward = errors.New("no forwarder defined")
 | ||
|  | 	// ErrCachedClosed means cached connection was closed by peer.
 | ||
|  | 	ErrCachedClosed = errors.New("cached connection was closed by peer")
 | ||
|  | )
 | ||
|  | 
 | ||
|  | // Options holds various Options that can be set.
 | ||
|  | type Options struct {
 | ||
|  | 	// ForceTCP use TCP protocol for upstream DNS request. Has precedence over PreferUDP flag
 | ||
|  | 	ForceTCP bool
 | ||
|  | 	// PreferUDP use UDP protocol for upstream DNS request.
 | ||
|  | 	PreferUDP bool
 | ||
|  | 	// HCRecursionDesired sets recursion desired flag for Proxy healthcheck requests
 | ||
|  | 	HCRecursionDesired bool
 | ||
|  | 	// HCDomain sets domain for Proxy healthcheck requests
 | ||
|  | 	HCDomain string
 | ||
|  | }
 |