Back to VividCortex/ewma

This commit is contained in:
Frank Denis 2022-04-05 14:04:26 +02:00
parent 77dc3b1e85
commit 5fca7ea49e
14 changed files with 300 additions and 97 deletions

View file

@ -15,10 +15,10 @@ import (
"sync"
"time"
"github.com/VividCortex/ewma"
"github.com/jedisct1/dlog"
clocksmith "github.com/jedisct1/go-clocksmith"
stamps "github.com/jedisct1/go-dnsstamps"
"github.com/lifenjoiner/ewma"
"github.com/miekg/dns"
"golang.org/x/crypto/ed25519"
)
@ -46,7 +46,7 @@ type DOHClientCreds struct {
type ServerInfo struct {
DOHClientCreds DOHClientCreds
lastActionTS time.Time
rtt *ewma.EWMA
rtt ewma.MovingAverage
Name string
HostName string
UDPAddr *net.UDPAddr