mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-23 17:11:29 +00:00
44 lines
984 B
Go
44 lines
984 B
Go
package endpoint
|
|
|
|
import "github.com/sagernet/sing-box/option"
|
|
|
|
type Adapter struct {
|
|
endpointType string
|
|
endpointTag string
|
|
network []string
|
|
dependencies []string
|
|
}
|
|
|
|
func NewAdapter(endpointType string, endpointTag string, network []string, dependencies []string) Adapter {
|
|
return Adapter{
|
|
endpointType: endpointType,
|
|
endpointTag: endpointTag,
|
|
network: network,
|
|
dependencies: dependencies,
|
|
}
|
|
}
|
|
|
|
func NewAdapterWithDialerOptions(endpointType string, endpointTag string, network []string, dialOptions option.DialerOptions) Adapter {
|
|
var dependencies []string
|
|
if dialOptions.Detour != "" {
|
|
dependencies = []string{dialOptions.Detour}
|
|
}
|
|
return NewAdapter(endpointType, endpointTag, network, dependencies)
|
|
}
|
|
|
|
func (a *Adapter) Type() string {
|
|
return a.endpointType
|
|
}
|
|
|
|
func (a *Adapter) Tag() string {
|
|
return a.endpointTag
|
|
}
|
|
|
|
func (a *Adapter) Network() []string {
|
|
return a.network
|
|
}
|
|
|
|
func (a *Adapter) Dependencies() []string {
|
|
return a.dependencies
|
|
}
|