diff --git a/common/dialer/default.go b/common/dialer/default.go index 50244ac5..3ef22da9 100644 --- a/common/dialer/default.go +++ b/common/dialer/default.go @@ -210,6 +210,8 @@ func NewDefault(ctx context.Context, options option.DialerOptions) (*DefaultDial func (d *DefaultDialer) DialContext(ctx context.Context, network string, address M.Socksaddr) (net.Conn, error) { if !address.IsValid() { return nil, E.New("invalid address") + } else if address.IsFqdn() { + return nil, E.New("domain not resolved") } if d.networkStrategy == nil { switch N.NetworkName(network) { diff --git a/protocol/direct/outbound.go b/protocol/direct/outbound.go index 9b454f58..7ad756f2 100644 --- a/protocol/direct/outbound.go +++ b/protocol/direct/outbound.go @@ -45,7 +45,7 @@ func NewOutbound(ctx context.Context, router adapter.Router, logger log.ContextL if options.Detour != "" { return nil, E.New("`detour` is not supported in direct context") } - outboundDialer, err := dialer.New(ctx, options.DialerOptions, false) + outboundDialer, err := dialer.New(ctx, options.DialerOptions, true) if err != nil { return nil, err }