mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	* plugin/kubernetes: axfr Hook up dynamic SOA serial by setting ResourceEventHandlerFuncs in dnsController. Add prototype of returns msg.Services via the Transfer function. Leave expanding this to RRs out of scope for a bit. * plugin/kubernetes: axfr Respond to AXFR queries * Fixing race condition * Fixing instantiation of dnstest writer * Updates from review
		
			
				
	
	
		
			25 lines
		
	
	
		
			548 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			548 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package etcd
 | 
						|
 | 
						|
import (
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/coredns/coredns/request"
 | 
						|
	"github.com/miekg/dns"
 | 
						|
	"golang.org/x/net/context"
 | 
						|
)
 | 
						|
 | 
						|
// Serial implements the Transferer interface.
 | 
						|
func (e *Etcd) Serial(state request.Request) uint32 {
 | 
						|
	return uint32(time.Now().Unix())
 | 
						|
}
 | 
						|
 | 
						|
// MinTTL implements the Transferer interface.
 | 
						|
func (e *Etcd) MinTTL(state request.Request) uint32 {
 | 
						|
	return 30
 | 
						|
}
 | 
						|
 | 
						|
// Transfer implements the Transferer interface.
 | 
						|
func (e *Etcd) Transfer(ctx context.Context, state request.Request) (int, error) {
 | 
						|
	return dns.RcodeServerFailure, nil
 | 
						|
}
 |