1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-18 07:17:32 -05:00
v2fly/app/router/chinasites_json.go

22 lines
396 B
Go
Raw Normal View History

2016-02-01 16:30:00 -05:00
// +build json
2016-10-12 10:11:13 -04:00
package router
2016-02-01 16:30:00 -05:00
import (
"encoding/json"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/log"
2016-02-01 16:30:00 -05:00
)
2016-10-11 17:02:44 -04:00
func parseChinaSitesRule(data []byte) (*RoutingRule, error) {
2016-02-01 16:30:00 -05:00
rawRule := new(JsonRule)
err := json.Unmarshal(data, rawRule)
if err != nil {
log.Error("Router: Invalid router rule: ", err)
return nil, err
}
2016-10-11 17:02:44 -04:00
return &RoutingRule{
Tag: rawRule.OutboundTag,
Domain: chinaSitesDomains,
2016-02-01 16:30:00 -05:00
}, nil
}