1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 06:30:42 +00:00
v2fly/infra/conf/v4/dokodemo.go

31 lines
873 B
Go
Raw Normal View History

package v4
2019-02-10 18:04:11 +00:00
import (
"github.com/golang/protobuf/proto"
2021-02-16 20:31:50 +00:00
2021-05-04 13:52:35 +00:00
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/proxy/dokodemo"
2019-02-10 18:04:11 +00:00
)
type DokodemoConfig struct {
Host *cfgcommon.Address `json:"address"`
PortValue uint16 `json:"port"`
NetworkList *cfgcommon.NetworkList `json:"network"`
TimeoutValue uint32 `json:"timeout"`
Redirect bool `json:"followRedirect"`
UserLevel uint32 `json:"userLevel"`
2019-02-10 18:04:11 +00:00
}
func (v *DokodemoConfig) Build() (proto.Message, error) {
config := new(dokodemo.Config)
if v.Host != nil {
config.Address = v.Host.Build()
}
config.Port = uint32(v.PortValue)
config.Networks = v.NetworkList.Build()
config.Timeout = v.TimeoutValue
config.FollowRedirect = v.Redirect
config.UserLevel = v.UserLevel
return config, nil
}