Add auto_route and auto_detect_interface for linux

This commit is contained in:
世界 2022-07-10 08:18:52 +08:00
parent 4432cc2253
commit 638f8a52d1
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
16 changed files with 318 additions and 20 deletions

View file

@ -83,16 +83,20 @@ func (h *Inbound) UnmarshalJSON(bytes []byte) error {
return nil
}
type ListenOptions struct {
Listen ListenAddress `json:"listen"`
ListenPort uint16 `json:"listen_port"`
TCPFastOpen bool `json:"tcp_fast_open,omitempty"`
UDPTimeout int64 `json:"udp_timeout,omitempty"`
type InboundOptions struct {
SniffEnabled bool `json:"sniff,omitempty"`
SniffOverrideDestination bool `json:"sniff_override_destination,omitempty"`
DomainStrategy DomainStrategy `json:"domain_strategy,omitempty"`
}
type ListenOptions struct {
Listen ListenAddress `json:"listen"`
ListenPort uint16 `json:"listen_port"`
TCPFastOpen bool `json:"tcp_fast_open,omitempty"`
UDPTimeout int64 `json:"udp_timeout,omitempty"`
InboundOptions
}
type SimpleInboundOptions struct {
ListenOptions
Users []auth.User `json:"users,omitempty"`
@ -144,4 +148,6 @@ type TunInboundOptions struct {
MTU uint32 `json:"mtu,omitempty"`
Inet4Address ListenPrefix `json:"inet4_address"`
Inet6Address ListenPrefix `json:"inet6_address"`
AutoRoute bool `json:"auto_route"`
InboundOptions
}