nameserver_unix.go raw

   1  //go:build !windows
   2  
   3  package dns01
   4  
   5  import "time"
   6  
   7  // dnsTimeout is used to override the default DNS timeout of 10 seconds.
   8  var dnsTimeout = 10 * time.Second
   9