mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 05:52:22 +08:00
19 lines
808 B
Go
19 lines
808 B
Go
package option
|
|
|
|
import "github.com/sagernet/sing/common/json/badoption"
|
|
|
|
type SelectorOutboundOptions struct {
|
|
Outbounds []string `json:"outbounds"`
|
|
Default string `json:"default,omitempty"`
|
|
InterruptExistConnections bool `json:"interrupt_exist_connections,omitempty"`
|
|
}
|
|
|
|
type URLTestOutboundOptions struct {
|
|
Outbounds []string `json:"outbounds"`
|
|
URL string `json:"url,omitempty"`
|
|
Interval badoption.Duration `json:"interval,omitempty"`
|
|
Tolerance uint16 `json:"tolerance,omitempty"`
|
|
IdleTimeout badoption.Duration `json:"idle_timeout,omitempty"`
|
|
InterruptExistConnections bool `json:"interrupt_exist_connections,omitempty"`
|
|
}
|