mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-23 09:01:30 +00:00
46 lines
989 B
Go
46 lines
989 B
Go
package outbound
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/option"
|
|
)
|
|
|
|
type Adapter struct {
|
|
outboundType string
|
|
outboundTag string
|
|
network []string
|
|
dependencies []string
|
|
}
|
|
|
|
func NewAdapter(outboundType string, outboundTag string, network []string, dependencies []string) Adapter {
|
|
return Adapter{
|
|
outboundType: outboundType,
|
|
outboundTag: outboundTag,
|
|
network: network,
|
|
dependencies: dependencies,
|
|
}
|
|
}
|
|
|
|
func NewAdapterWithDialerOptions(outboundType string, outboundTag string, network []string, dialOptions option.DialerOptions) Adapter {
|
|
var dependencies []string
|
|
if dialOptions.Detour != "" {
|
|
dependencies = []string{dialOptions.Detour}
|
|
}
|
|
return NewAdapter(outboundType, outboundTag, network, dependencies)
|
|
}
|
|
|
|
func (a *Adapter) Type() string {
|
|
return a.outboundType
|
|
}
|
|
|
|
func (a *Adapter) Tag() string {
|
|
return a.outboundTag
|
|
}
|
|
|
|
func (a *Adapter) Network() []string {
|
|
return a.network
|
|
}
|
|
|
|
func (a *Adapter) Dependencies() []string {
|
|
return a.dependencies
|
|
}
|