mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
19 lines
818 B
Go
19 lines
818 B
Go
package option
|
|
|
|
import (
|
|
"github.com/sagernet/sing/common/json/badoption"
|
|
)
|
|
|
|
type MITMOptions struct {
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
HTTP2Enabled bool `json:"http2_enabled,omitempty"`
|
|
}
|
|
|
|
type MITMRouteOptions struct {
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
Print bool `json:"print,omitempty"`
|
|
SurgeURLRewrite badoption.Listable[SurgeURLRewriteLine] `json:"surge_url_rewrite,omitempty"`
|
|
SurgeHeaderRewrite badoption.Listable[SurgeHeaderRewriteLine] `json:"surge_header_rewrite,omitempty"`
|
|
SurgeBodyRewrite badoption.Listable[SurgeBodyRewriteLine] `json:"surge_body_rewrite,omitempty"`
|
|
SurgeMapLocal badoption.Listable[SurgeMapLocalLine] `json:"surge_map_local,omitempty"`
|
|
}
|