Files
trojan-go/stat/stat.go
T

16 lines
197 B
Go

package stat
import (
"io"
)
type TrafficMeter interface {
Count(passwordHash string, sent int, recv int)
io.Closer
}
type Authenticator interface {
CheckHash(hash string) bool
io.Closer
}