示例#1
0
func init() {
	config.RegisterInboundConnectionConfig("vmess", json.JsonConfigLoader(func() interface{} {
		return new(Inbound)
	}))
}
示例#2
0
func init() {
	config.RegisterOutboundConnectionConfig("blackhole", json.JsonConfigLoader(func() interface{} {
		return new(BlackHoleConfig)
	}))
}
示例#3
0
func init() {
	config.RegisterInboundConnectionConfig("dokodemo-door", json.JsonConfigLoader(func() interface{} {
		return new(DokodemoConfig)
	}))
}
示例#4
0
func init() {
	config.RegisterInboundConnectionConfig("http", json.JsonConfigLoader(func() interface{} {
		return new(HttpProxyConfig)
	}))
}
示例#5
0
func init() {
	config.RegisterOutboundConnectionConfig("freedom", json.JsonConfigLoader(func() interface{} {
		return &FreedomConfiguration{}
	}))
}
示例#6
0
func init() {
	proxyconfig.RegisterOutboundConnectionConfig("vmess", jsonconfig.JsonConfigLoader(func() interface{} {
		return new(Outbound)
	}))
}