2022-07-03 12:59:25 +00:00
|
|
|
package dialer
|
|
|
|
|
|
|
|
import (
|
2022-07-08 04:58:43 +00:00
|
|
|
"time"
|
|
|
|
|
2022-07-06 07:01:09 +00:00
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
2022-07-11 10:44:59 +00:00
|
|
|
"github.com/sagernet/sing-dns"
|
2022-07-08 15:03:57 +00:00
|
|
|
N "github.com/sagernet/sing/common/network"
|
2022-07-03 12:59:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func New(router adapter.Router, options option.DialerOptions) N.Dialer {
|
|
|
|
if options.Detour == "" {
|
2022-07-10 00:18:52 +00:00
|
|
|
return NewDefault(router, options)
|
2022-07-03 12:59:25 +00:00
|
|
|
} else {
|
2022-07-07 15:36:32 +00:00
|
|
|
return NewDetour(router, options.Detour)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewOutbound(router adapter.Router, options option.OutboundDialerOptions) N.Dialer {
|
|
|
|
dialer := New(router, options.DialerOptions)
|
2022-07-11 10:44:59 +00:00
|
|
|
domainStrategy := dns.DomainStrategy(options.DomainStrategy)
|
|
|
|
if domainStrategy != dns.DomainStrategyAsIS || options.Detour == "" {
|
|
|
|
dialer = NewResolveDialer(router, dialer, domainStrategy, time.Duration(options.FallbackDelay))
|
2022-07-03 12:59:25 +00:00
|
|
|
}
|
|
|
|
return dialer
|
|
|
|
}
|