예제 #1
0
func init() {
	internet.RegisterAuthenticator("none", NoOpAuthenticatorFactory{}, func() interface{} { return &NoOpAuthenticatorConfig{} })
}
예제 #2
0
파일: srtp.go 프로젝트: xyz12810/v2ray-core
func init() {
	internet.RegisterAuthenticator(loader.GetType(new(Config)), SRTPFactory{})
}
예제 #3
0
파일: noop.go 프로젝트: xyz12810/v2ray-core
func init() {
	internet.RegisterAuthenticator(loader.GetType(new(Config)), NoOpAuthenticatorFactory{})
	internet.RegisterConnectionAuthenticator(loader.GetType(new(Config)), NoOpConnectionAuthenticatorFactory{})
}
예제 #4
0
파일: utp.go 프로젝트: DZLZHCODE/v2ray-core
func init() {
	internet.RegisterAuthenticator("utp", UTPFactory{}, func() interface{} { return new(Config) })
}