mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Back to VividCortex/ewma
This commit is contained in:
parent
77dc3b1e85
commit
5fca7ea49e
14 changed files with 300 additions and 97 deletions
|
@ -3,23 +3,19 @@ package main
|
|||
import (
|
||||
"sync"
|
||||
|
||||
"github.com/lifenjoiner/ewma"
|
||||
)
|
||||
|
||||
const (
|
||||
SizeEstimatorEwmaDecay = 100.0
|
||||
"github.com/VividCortex/ewma"
|
||||
)
|
||||
|
||||
type QuestionSizeEstimator struct {
|
||||
sync.RWMutex
|
||||
minQuestionSize int
|
||||
ewma *ewma.EWMA
|
||||
ewma ewma.MovingAverage
|
||||
}
|
||||
|
||||
func NewQuestionSizeEstimator() QuestionSizeEstimator {
|
||||
return QuestionSizeEstimator{
|
||||
minQuestionSize: InitialMinQuestionSize,
|
||||
ewma: ewma.NewMovingAverage(SizeEstimatorEwmaDecay),
|
||||
ewma: &ewma.SimpleEWMA{},
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue