aboutsummaryrefslogtreecommitdiff
path: root/plugin/etcd/xfr.go
blob: 87a4d7838b46aabd5da365a0d5f874a557e3d7db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package etcd

import (
	"time"

	"github.com/coredns/coredns/request"
)

// Serial returns the serial number to use.
func (e *Etcd) Serial(state request.Request) uint32 {
	return uint32(time.Now().Unix())
}

// MinTTL returns the minimal TTL.
func (e *Etcd) MinTTL(state request.Request) uint32 {
	return 30
}