mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-25 01:54:42 -05:00
9 lines
243 B
Go
9 lines
243 B
Go
|
package model
|
||
|
|
||
|
type DirectOutboundOptions struct {
|
||
|
DialerOptions
|
||
|
OverrideAddress string `json:"override_address,omitempty"`
|
||
|
OverridePort uint16 `json:"override_port,omitempty"`
|
||
|
ProxyProtocol uint8 `json:"proxy_protocol,omitempty"`
|
||
|
}
|