2016-06-10 20:26:39 +00:00
|
|
|
// +build json
|
|
|
|
|
2016-08-17 21:30:15 +00:00
|
|
|
package registry
|
2016-06-10 20:26:39 +00:00
|
|
|
|
|
|
|
import (
|
2016-08-20 18:55:45 +00:00
|
|
|
"v2ray.com/core/common/loader"
|
2016-06-10 20:26:39 +00:00
|
|
|
)
|
|
|
|
|
2016-10-13 09:14:24 +00:00
|
|
|
var (
|
|
|
|
inboundConfigCache loader.ConfigLoader
|
|
|
|
outboundConfigCache loader.ConfigLoader
|
|
|
|
)
|
|
|
|
|
|
|
|
func CreateInboundConfig(protocol string, data []byte) (interface{}, error) {
|
|
|
|
return inboundConfigCache.LoadWithID(data, protocol)
|
|
|
|
}
|
|
|
|
|
|
|
|
func CreateOutboundConfig(protocol string, data []byte) (interface{}, error) {
|
|
|
|
return outboundConfigCache.LoadWithID(data, protocol)
|
|
|
|
}
|
|
|
|
|
2016-06-10 20:26:39 +00:00
|
|
|
func init() {
|
2016-09-21 12:39:07 +00:00
|
|
|
inboundConfigCache = loader.NewJSONConfigLoader(inboundConfigCreatorCache, "protocol", "settings")
|
|
|
|
outboundConfigCache = loader.NewJSONConfigLoader(outboundConfigCreatorCache, "protocol", "settings")
|
2016-06-10 20:26:39 +00:00
|
|
|
}
|