2024-03-10 15:13:42 -04:00
|
|
|
package model
|
|
|
|
|
2024-03-20 12:02:38 -04:00
|
|
|
type HysteriaOutboundOptions struct {
|
|
|
|
DialerOptions
|
|
|
|
ServerOptions
|
|
|
|
Up string `json:"up,omitempty"`
|
|
|
|
UpMbps int `json:"up_mbps,omitempty"`
|
|
|
|
Down string `json:"down,omitempty"`
|
|
|
|
DownMbps int `json:"down_mbps,omitempty"`
|
|
|
|
Obfs string `json:"obfs,omitempty"`
|
|
|
|
Auth []byte `json:"auth,omitempty"`
|
|
|
|
AuthString string `json:"auth_str,omitempty"`
|
|
|
|
ReceiveWindowConn uint64 `json:"recv_window_conn,omitempty"`
|
|
|
|
ReceiveWindow uint64 `json:"recv_window,omitempty"`
|
|
|
|
DisableMTUDiscovery bool `json:"disable_mtu_discovery,omitempty"`
|
|
|
|
Network string `json:"network,omitempty"`
|
|
|
|
OutboundTLSOptionsContainer
|
2024-03-10 15:13:42 -04:00
|
|
|
}
|