mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-30 09:43:17 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			532 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			532 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package etcd
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/coredns/coredns/request"
 | |
| 
 | |
| 	"github.com/miekg/dns"
 | |
| )
 | |
| 
 | |
| // 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
 | |
| }
 |