mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-21 11:57:30 +03: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"`
|
|
}
|