gost/pkg/handler/socks/v4/metadata.go
2021-11-05 23:36:50 +08:00

20 lines
262 B
Go

package v4
import (
"time"
"github.com/go-gost/gost/pkg/auth"
)
const (
authsKey = "auths"
readTimeout = "readTimeout"
retryCount = "retry"
)
type metadata struct {
authenticator auth.Authenticator
readTimeout time.Duration
retryCount int
}