From 2dc6ade6d6d67ad86d88aba294e79f81cf5055d4 Mon Sep 17 00:00:00 2001 From: WendelHime <6754291+WendelHime@users.noreply.github.com> Date: Tue, 4 Mar 2025 17:39:03 -0300 Subject: [PATCH] feat: adding support for Server is domain flag --- protocol/outline/outbound.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/outline/outbound.go b/protocol/outline/outbound.go index b97aafea..f891a3d9 100644 --- a/protocol/outline/outbound.go +++ b/protocol/outline/outbound.go @@ -41,7 +41,7 @@ func RegisterOutbound(registry *outbound.Registry) { // NewOutbound creates a proxyless outbond that uses the proxyless transport // for dialing func NewOutbound(ctx context.Context, router adapter.Router, log log.ContextLogger, tag string, options option.OutboundOutlineOptions) (adapter.Outbound, error) { - outboundDialer, err := dialer.New(ctx, options.DialerOptions) + outboundDialer, err := dialer.New(ctx, options.DialerOptions, true) if err != nil { return nil, err }