mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-23 10:28:13 -05:00
42bb7bc90f
initial support for hysteria update config update api change user email format ...
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package builder
|
|
|
|
import (
|
|
"fmt"
|
|
conf2 "github.com/Yuzuki616/V2bX/conf"
|
|
"github.com/goccy/go-json"
|
|
"github.com/xtls/xray-core/common/net"
|
|
"github.com/xtls/xray-core/core"
|
|
"github.com/xtls/xray-core/infra/conf"
|
|
)
|
|
|
|
// BuildOutbound build freedom outbund config for addoutbound
|
|
func BuildOutbound(config *conf2.ControllerConfig, tag string) (*core.OutboundHandlerConfig, error) {
|
|
outboundDetourConfig := &conf.OutboundDetourConfig{}
|
|
outboundDetourConfig.Protocol = "freedom"
|
|
outboundDetourConfig.Tag = tag
|
|
|
|
// Build Send IP address
|
|
if config.SendIP != "" {
|
|
ipAddress := net.ParseAddress(config.SendIP)
|
|
outboundDetourConfig.SendThrough = &conf.Address{Address: ipAddress}
|
|
}
|
|
|
|
// Freedom Protocol setting
|
|
var domainStrategy = "Asis"
|
|
if config.XrayOptions.EnableDNS {
|
|
if config.XrayOptions.DNSType != "" {
|
|
domainStrategy = config.XrayOptions.DNSType
|
|
} else {
|
|
domainStrategy = "UseIP"
|
|
}
|
|
}
|
|
proxySetting := &conf.FreedomConfig{
|
|
DomainStrategy: domainStrategy,
|
|
}
|
|
var setting json.RawMessage
|
|
setting, err := json.Marshal(proxySetting)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("marshal proxy config error: %s", err)
|
|
}
|
|
outboundDetourConfig.Settings = &setting
|
|
return outboundDetourConfig.Build()
|
|
}
|