2022-07-25 03:29:46 +00:00
|
|
|
package option
|
|
|
|
|
2023-10-21 04:00:00 +00:00
|
|
|
import "net/netip"
|
|
|
|
|
2022-07-25 03:29:46 +00:00
|
|
|
type TunInboundOptions struct {
|
2023-10-30 04:00:00 +00:00
|
|
|
InterfaceName string `json:"interface_name,omitempty"`
|
|
|
|
MTU uint32 `json:"mtu,omitempty"`
|
2023-12-20 12:00:00 +00:00
|
|
|
GSO bool `json:"gso,omitempty"`
|
2023-10-30 04:00:00 +00:00
|
|
|
Inet4Address Listable[netip.Prefix] `json:"inet4_address,omitempty"`
|
|
|
|
Inet6Address Listable[netip.Prefix] `json:"inet6_address,omitempty"`
|
|
|
|
AutoRoute bool `json:"auto_route,omitempty"`
|
|
|
|
StrictRoute bool `json:"strict_route,omitempty"`
|
|
|
|
Inet4RouteAddress Listable[netip.Prefix] `json:"inet4_route_address,omitempty"`
|
|
|
|
Inet6RouteAddress Listable[netip.Prefix] `json:"inet6_route_address,omitempty"`
|
|
|
|
Inet4RouteExcludeAddress Listable[netip.Prefix] `json:"inet4_route_exclude_address,omitempty"`
|
|
|
|
Inet6RouteExcludeAddress Listable[netip.Prefix] `json:"inet6_route_exclude_address,omitempty"`
|
|
|
|
IncludeInterface Listable[string] `json:"include_interface,omitempty"`
|
|
|
|
ExcludeInterface Listable[string] `json:"exclude_interface,omitempty"`
|
|
|
|
IncludeUID Listable[uint32] `json:"include_uid,omitempty"`
|
|
|
|
IncludeUIDRange Listable[string] `json:"include_uid_range,omitempty"`
|
|
|
|
ExcludeUID Listable[uint32] `json:"exclude_uid,omitempty"`
|
|
|
|
ExcludeUIDRange Listable[string] `json:"exclude_uid_range,omitempty"`
|
|
|
|
IncludeAndroidUser Listable[int] `json:"include_android_user,omitempty"`
|
|
|
|
IncludePackage Listable[string] `json:"include_package,omitempty"`
|
|
|
|
ExcludePackage Listable[string] `json:"exclude_package,omitempty"`
|
|
|
|
EndpointIndependentNat bool `json:"endpoint_independent_nat,omitempty"`
|
2023-12-20 11:55:14 +00:00
|
|
|
UDPTimeout UDPTimeoutCompat `json:"udp_timeout,omitempty"`
|
2023-10-30 04:00:00 +00:00
|
|
|
Stack string `json:"stack,omitempty"`
|
|
|
|
Platform *TunPlatformOptions `json:"platform,omitempty"`
|
2022-07-25 03:29:46 +00:00
|
|
|
InboundOptions
|
|
|
|
}
|