mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
36 lines
1 KiB
Go
36 lines
1 KiB
Go
package dialer
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
C "github.com/sagernet/sing-box/constant"
|
|
"github.com/sagernet/sing-box/option"
|
|
"github.com/sagernet/sing/common"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
func New(router adapter.Router, options option.DialerOptions) N.Dialer {
|
|
if options.Detour == "" {
|
|
return NewDefault(router, options)
|
|
} else {
|
|
return NewDetour(router, options.Detour)
|
|
}
|
|
}
|
|
|
|
func NewOutbound(router adapter.Router, options option.OutboundDialerOptions) N.Dialer {
|
|
dialer := New(router, options.DialerOptions)
|
|
domainStrategy := C.DomainStrategy(options.DomainStrategy)
|
|
if domainStrategy != C.DomainStrategyAsIS || options.Detour == "" {
|
|
fallbackDelay := time.Duration(options.FallbackDelay)
|
|
if fallbackDelay == 0 {
|
|
fallbackDelay = time.Millisecond * 300
|
|
}
|
|
dialer = NewResolveDialer(router, dialer, domainStrategy, fallbackDelay)
|
|
}
|
|
if options.OverrideOptions.IsValid() {
|
|
dialer = NewOverride(dialer, common.PtrValueOrDefault(options.OverrideOptions))
|
|
}
|
|
return dialer
|
|
}
|