Clash.Meta/listener/config/auth.go

18 lines
359 B
Go
Raw Normal View History

package config
import (
"github.com/metacubex/mihomo/component/auth"
"github.com/metacubex/mihomo/listener/reality"
)
// AuthServer for http/socks/mixed server
type AuthServer struct {
Enable bool
Listen string
AuthStore auth.AuthStore
Certificate string
PrivateKey string
2025-05-17 20:50:21 +08:00
EchKey string
RealityConfig reality.Config
}