gost/pkg/components/handler/ssu/metadata.go
2021-10-26 21:07:46 +08:00

20 lines
268 B
Go

package ss
import (
"time"
"github.com/shadowsocks/go-shadowsocks2/core"
)
const (
method = "method"
password = "password"
key = "key"
readTimeout = "readTimeout"
)
type metadata struct {
cipher core.Cipher
readTimeout time.Duration
}