mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 18:23:13 -04:00 
			
		
		
		
	* middleware/httproxy: implement debug queries Not too useful at the moment, but o-o.debug queries are supported and return the Comment from dns.google.com. Note that this is not always set. * improve documentation * Testing cleanups
		
			
				
	
	
		
			34 lines
		
	
	
		
			608 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			608 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package httpproxy
 | |
| 
 | |
| import (
 | |
| 	"crypto/tls"
 | |
| 	"net/http"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/miekg/coredns/request"
 | |
| 	"github.com/miekg/dns"
 | |
| )
 | |
| 
 | |
| // Exchanger is an interface that specifies a type implementing a DNS resolver that
 | |
| // uses a HTTPS server.
 | |
| type Exchanger interface {
 | |
| 	Exchange(request.Request) (*dns.Msg, error)
 | |
| 
 | |
| 	SetUpstream(*simpleUpstream) error
 | |
| 	OnStartup() error
 | |
| 	OnShutdown() error
 | |
| }
 | |
| 
 | |
| func newClient(sni string) *http.Client {
 | |
| 	tls := &tls.Config{ServerName: sni}
 | |
| 
 | |
| 	c := &http.Client{
 | |
| 		Timeout:   time.Second * timeOut,
 | |
| 		Transport: &http.Transport{TLSClientConfig: tls},
 | |
| 	}
 | |
| 
 | |
| 	return c
 | |
| }
 | |
| 
 | |
| const timeOut = 5
 |