Skip to content

Commit

Permalink
Add DomainStrategy for JSONv5 outbound
Browse files Browse the repository at this point in the history
  • Loading branch information
57a4c324e742 authored and xiaokangwang committed Nov 19, 2023
1 parent 620c2c1 commit 1f449e2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions infra/conf/v5cfg/outbound.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package v5cfg

import (
"context"
"strings"

"github.com/golang/protobuf/proto"

Expand Down Expand Up @@ -41,6 +42,16 @@ func (c OutboundConfig) BuildV5(ctx context.Context) (proto.Message, error) {
if c.MuxSettings != nil {
senderSettings.MultiplexSettings = c.MuxSettings.Build()
}

senderSettings.DomainStrategy = proxyman.SenderConfig_AS_IS
switch strings.ToLower(c.DomainStrategy) {
case "useip", "use_ip", "use-ip":
senderSettings.DomainStrategy = proxyman.SenderConfig_USE_IP
case "useip4", "useipv4", "use_ip4", "use_ipv4", "use_ip_v4", "use-ip4", "use-ipv4", "use-ip-v4":
senderSettings.DomainStrategy = proxyman.SenderConfig_USE_IP4
case "useip6", "useipv6", "use_ip6", "use_ipv6", "use_ip_v6", "use-ip6", "use-ipv6", "use-ip-v6":
senderSettings.DomainStrategy = proxyman.SenderConfig_USE_IP6
}

if c.Settings == nil {
c.Settings = []byte("{}")
Expand Down

0 comments on commit 1f449e2

Please sign in to comment.