mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-06-13 21:54:13 +08:00
17 lines
406 B
Go
17 lines
406 B
Go
package option
|
|
|
|
type RedirectInboundOptions struct {
|
|
ListenOptions
|
|
AutoRedirect *AutoRedirectOptions `json:"auto_redirect,omitempty"`
|
|
}
|
|
|
|
type AutoRedirectOptions struct {
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
ContinueOnNoPermission bool `json:"continue_on_no_permission,omitempty"`
|
|
}
|
|
|
|
type TProxyInboundOptions struct {
|
|
ListenOptions
|
|
Network NetworkList `json:"network,omitempty"`
|
|
}
|