2024-03-11 05:31:29 -04:00
|
|
|
package model
|
|
|
|
|
2024-03-11 07:28:22 -04:00
|
|
|
import "encoding/json"
|
|
|
|
|
|
|
|
type Listable[T any] []T
|
|
|
|
|
|
|
|
func (l *Listable[T]) UnmarshalJSON(data []byte) error {
|
|
|
|
var arr []T
|
|
|
|
if err := json.Unmarshal(data, &arr); err == nil {
|
|
|
|
*l = arr
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var v T
|
|
|
|
if err := json.Unmarshal(data, &v); err == nil {
|
|
|
|
*l = []T{v}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Obfs struct {
|
|
|
|
Str string
|
|
|
|
Obfs *Hysteria2Obfs
|
|
|
|
IsStr bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Obfs) UnmarshalJSON(data []byte) error {
|
|
|
|
var str string
|
|
|
|
if err := json.Unmarshal(data, &str); err == nil {
|
|
|
|
o.Str = str
|
|
|
|
o.IsStr = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var obfs Hysteria2Obfs
|
|
|
|
if err := json.Unmarshal(data, &obfs); err == nil {
|
|
|
|
o.IsStr = false
|
|
|
|
o.Obfs = &obfs
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o Obfs) MarshalJSON() ([]byte, error) {
|
|
|
|
if o.IsStr {
|
|
|
|
return json.Marshal(o.Str)
|
|
|
|
}
|
|
|
|
return json.Marshal(o.Obfs)
|
|
|
|
}
|
|
|
|
|
2024-03-11 05:31:29 -04:00
|
|
|
type Config struct {
|
|
|
|
Log *LogOptions `json:"log,omitempty"`
|
|
|
|
DNS *DNSOptions `json:"dns,omitempty"`
|
|
|
|
NTP *NTPOptions `json:"ntp,omitempty"`
|
2024-03-11 07:28:22 -04:00
|
|
|
Inbounds Listable[Inbound] `json:"inbounds,omitempty"`
|
|
|
|
Outbounds Listable[Outbound] `json:"outbounds,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
Route *RouteOptions `json:"route,omitempty"`
|
|
|
|
Experimental *ExperimentalOptions `json:"experimental,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type LogOptions struct {
|
|
|
|
Disabled bool `json:"disabled,omitempty"`
|
|
|
|
Level string `json:"level,omitempty"`
|
|
|
|
Output string `json:"output,omitempty"`
|
|
|
|
Timestamp bool `json:"timestamp,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type DNSOptions struct {
|
2024-03-11 07:28:22 -04:00
|
|
|
Servers Listable[DNSServerOptions] `json:"servers,omitempty"`
|
|
|
|
Rules Listable[DNSRule] `json:"rules,omitempty"`
|
|
|
|
Final string `json:"final,omitempty"`
|
|
|
|
ReverseMapping bool `json:"reverse_mapping,omitempty"`
|
|
|
|
FakeIP *DNSFakeIPOptions `json:"fakeip,omitempty"`
|
|
|
|
Strategy string `json:"strategy,omitempty"`
|
|
|
|
DisableCache bool `json:"disable_cache,omitempty"`
|
|
|
|
DisableExpire bool `json:"disable_expire,omitempty"`
|
|
|
|
IndependentCache bool `json:"independent_cache,omitempty"`
|
|
|
|
ClientSubnet string `json:"client_subnet,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type DNSServerOptions struct {
|
|
|
|
Tag string `json:"tag,omitempty"`
|
|
|
|
Address string `json:"address"`
|
|
|
|
AddressResolver string `json:"address_resolver,omitempty"`
|
|
|
|
AddressStrategy string `json:"address_strategy,omitempty"`
|
|
|
|
Strategy string `json:"strategy,omitempty"`
|
|
|
|
Detour string `json:"detour,omitempty"`
|
|
|
|
ClientSubnet string `json:"client_subnet,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type DNSRule struct {
|
2024-03-11 07:28:22 -04:00
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
Inbound Listable[string] `json:"inbound,omitempty"`
|
|
|
|
IPVersion int `json:"ip_version,omitempty"`
|
2024-03-11 09:00:13 -04:00
|
|
|
QueryType Listable[string] `json:"query_type,omitempty"`
|
2024-03-11 07:28:22 -04:00
|
|
|
Network Listable[string] `json:"network,omitempty"`
|
|
|
|
AuthUser Listable[string] `json:"auth_user,omitempty"`
|
|
|
|
Protocol Listable[string] `json:"protocol,omitempty"`
|
|
|
|
Domain Listable[string] `json:"domain,omitempty"`
|
|
|
|
DomainSuffix Listable[string] `json:"domain_suffix,omitempty"`
|
|
|
|
DomainKeyword Listable[string] `json:"domain_keyword,omitempty"`
|
|
|
|
DomainRegex Listable[string] `json:"domain_regex,omitempty"`
|
|
|
|
Geosite Listable[string] `json:"geosite,omitempty"`
|
|
|
|
SourceGeoIP Listable[string] `json:"source_geoip,omitempty"`
|
|
|
|
GeoIP Listable[string] `json:"geoip,omitempty"`
|
|
|
|
IPCIDR Listable[string] `json:"ip_cidr,omitempty"`
|
|
|
|
IPIsPrivate bool `json:"ip_is_private,omitempty"`
|
|
|
|
SourceIPCIDR Listable[string] `json:"source_ip_cidr,omitempty"`
|
|
|
|
SourceIPIsPrivate bool `json:"source_ip_is_private,omitempty"`
|
|
|
|
SourcePort Listable[uint16] `json:"source_port,omitempty"`
|
|
|
|
SourcePortRange Listable[string] `json:"source_port_range,omitempty"`
|
|
|
|
Port Listable[uint16] `json:"port,omitempty"`
|
|
|
|
PortRange Listable[string] `json:"port_range,omitempty"`
|
|
|
|
ProcessName Listable[string] `json:"process_name,omitempty"`
|
|
|
|
ProcessPath Listable[string] `json:"process_path,omitempty"`
|
|
|
|
PackageName Listable[string] `json:"package_name,omitempty"`
|
|
|
|
User Listable[string] `json:"user,omitempty"`
|
|
|
|
UserID Listable[int32] `json:"user_id,omitempty"`
|
|
|
|
Outbound Listable[string] `json:"outbound,omitempty"`
|
|
|
|
ClashMode string `json:"clash_mode,omitempty"`
|
|
|
|
WIFISSID Listable[string] `json:"wifi_ssid,omitempty"`
|
|
|
|
WIFIBSSID Listable[string] `json:"wifi_bssid,omitempty"`
|
|
|
|
RuleSet Listable[string] `json:"rule_set,omitempty"`
|
|
|
|
RuleSetIPCIDRMatchSource bool `json:"rule_set_ipcidr_match_source,omitempty"`
|
|
|
|
Invert bool `json:"invert,omitempty"`
|
|
|
|
Server string `json:"server,omitempty"`
|
|
|
|
DisableCache bool `json:"disable_cache,omitempty"`
|
|
|
|
RewriteTTL uint32 `json:"rewrite_ttl,omitempty"`
|
|
|
|
ClientSubnet string `json:"client_subnet,omitempty"`
|
2024-03-11 09:00:13 -04:00
|
|
|
Mode string `json:"mode,omitempty"`
|
2024-03-11 07:28:22 -04:00
|
|
|
Rules Listable[DNSRule] `json:"rules,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type DNSFakeIPOptions struct {
|
|
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
|
|
Inet4Range string `json:"inet4_range,omitempty"`
|
|
|
|
Inet6Range string `json:"inet6_range,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type NTPOptions struct {
|
|
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
|
|
Server string `json:"server,omitempty"`
|
|
|
|
ServerPort uint16 `json:"server_port,omitempty"`
|
|
|
|
Interval string `json:"interval,omitempty"`
|
|
|
|
WriteToSystem bool `json:"write_to_system,omitempty"`
|
|
|
|
Detour string `json:"detour,omitempty"`
|
|
|
|
BindInterface string `json:"bind_interface,omitempty"`
|
|
|
|
Inet4BindAddress string `json:"inet4_bind_address,omitempty"`
|
|
|
|
Inet6BindAddress string `json:"inet6_bind_address,omitempty"`
|
|
|
|
ProtectPath string `json:"protect_path,omitempty"`
|
|
|
|
RoutingMark int `json:"routing_mark,omitempty"`
|
|
|
|
ReuseAddr bool `json:"reuse_addr,omitempty"`
|
|
|
|
ConnectTimeout string `json:"connect_timeout,omitempty"`
|
|
|
|
TCPFastOpen bool `json:"tcp_fast_open,omitempty"`
|
|
|
|
TCPMultiPath bool `json:"tcp_multi_path,omitempty"`
|
|
|
|
UDPFragment bool `json:"udp_fragment,omitempty"`
|
|
|
|
DomainStrategy string `json:"domain_strategy,omitempty"`
|
|
|
|
FallbackDelay string `json:"fallback_delay,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Inbound struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Tag string `json:"tag,omitempty"`
|
|
|
|
InterfaceName string `json:"interface_name,omitempty"`
|
|
|
|
MTU uint32 `json:"mtu,omitempty"`
|
|
|
|
GSO bool `json:"gso,omitempty"`
|
2024-03-11 07:28:22 -04:00
|
|
|
Inet4Address Listable[string] `json:"inet4_address,omitempty"`
|
|
|
|
Inet6Address Listable[string] `json:"inet6_address,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
AutoRoute bool `json:"auto_route,omitempty"`
|
|
|
|
StrictRoute bool `json:"strict_route,omitempty"`
|
2024-03-11 07:28:22 -04:00
|
|
|
Inet4RouteAddress Listable[string] `json:"inet4_route_address,omitempty"`
|
|
|
|
Inet6RouteAddress Listable[string] `json:"inet6_route_address,omitempty"`
|
|
|
|
Inet4RouteExcludeAddress Listable[string] `json:"inet4_route_exclude_address,omitempty"`
|
|
|
|
Inet6RouteExcludeAddress Listable[string] `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"`
|
2024-03-11 05:31:29 -04:00
|
|
|
EndpointIndependentNat bool `json:"endpoint_independent_nat,omitempty"`
|
|
|
|
UDPTimeout string `json:"udp_timeout,omitempty"`
|
|
|
|
Stack string `json:"stack,omitempty"`
|
|
|
|
Platform *TunPlatformOptions `json:"platform,omitempty"`
|
|
|
|
SniffEnabled bool `json:"sniff,omitempty"`
|
|
|
|
SniffOverrideDestination bool `json:"sniff_override_destination,omitempty"`
|
|
|
|
SniffTimeout string `json:"sniff_timeout,omitempty"`
|
|
|
|
DomainStrategy string `json:"domain_strategy,omitempty"`
|
|
|
|
UDPDisableDomainUnmapping bool `json:"udp_disable_domain_unmapping,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunPlatformOptions struct {
|
|
|
|
HTTPProxy *HTTPProxyOptions `json:"http_proxy,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type HTTPProxyOptions struct {
|
2024-03-11 07:28:22 -04:00
|
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
|
|
Server string `json:"server"`
|
|
|
|
ServerPort uint16 `json:"server_port"`
|
|
|
|
BypassDomain Listable[string] `json:"bypass_domain,omitempty"`
|
|
|
|
MatchDomain Listable[string] `json:"match_domain,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Outbound struct {
|
2024-03-11 07:28:22 -04:00
|
|
|
Type string `json:"type"`
|
|
|
|
Tag string `json:"tag,omitempty"`
|
|
|
|
Detour string `json:"detour,omitempty"`
|
|
|
|
BindInterface string `json:"bind_interface,omitempty"`
|
|
|
|
Inet4BindAddress string `json:"inet4_bind_address,omitempty"`
|
|
|
|
Inet6BindAddress string `json:"inet6_bind_address,omitempty"`
|
|
|
|
ProtectPath string `json:"protect_path,omitempty"`
|
|
|
|
RoutingMark int `json:"routing_mark,omitempty"`
|
|
|
|
ReuseAddr bool `json:"reuse_addr,omitempty"`
|
|
|
|
ConnectTimeout string `json:"connect_timeout,omitempty"`
|
|
|
|
TCPFastOpen bool `json:"tcp_fast_open,omitempty"`
|
|
|
|
TCPMultiPath bool `json:"tcp_multi_path,omitempty"`
|
|
|
|
UDPFragment *bool `json:"udp_fragment,omitempty"`
|
|
|
|
DomainStrategy string `json:"domain_strategy,omitempty"`
|
|
|
|
FallbackDelay string `json:"fallback_delay,omitempty"`
|
|
|
|
OverrideAddress string `json:"override_address,omitempty"`
|
|
|
|
OverridePort uint16 `json:"override_port,omitempty"`
|
|
|
|
ProxyProtocol uint8 `json:"proxy_protocol,omitempty"`
|
|
|
|
Server string `json:"server,omitempty"`
|
|
|
|
ServerPort uint16 `json:"server_port,omitempty"`
|
|
|
|
Version string `json:"version,omitempty"`
|
|
|
|
Username string `json:"username,omitempty"`
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
Network string `json:"network,omitempty"`
|
|
|
|
UDPOverTCP *UDPOverTCPOptions `json:"udp_over_tcp,omitempty"`
|
|
|
|
TLS *OutboundTLSOptions `json:"tls,omitempty"`
|
|
|
|
Path string `json:"path,omitempty"`
|
|
|
|
Headers map[string]Listable[string] `json:"headers,omitempty"`
|
|
|
|
Method string `json:"method,omitempty"`
|
|
|
|
Plugin string `json:"plugin,omitempty"`
|
|
|
|
PluginOptions string `json:"plugin_opts,omitempty"`
|
|
|
|
Multiplex *OutboundMultiplexOptions `json:"multiplex,omitempty"`
|
|
|
|
UUID string `json:"uuid,omitempty"`
|
|
|
|
Security string `json:"security,omitempty"`
|
|
|
|
AlterId int `json:"alter_id,omitempty"`
|
|
|
|
GlobalPadding bool `json:"global_padding,omitempty"`
|
|
|
|
AuthenticatedLength bool `json:"authenticated_length,omitempty"`
|
|
|
|
PacketEncoding string `json:"packet_encoding,omitempty"`
|
|
|
|
Transport *V2RayTransportOptions `json:"transport,omitempty"`
|
|
|
|
SystemInterface bool `json:"system_interface,omitempty"`
|
|
|
|
GSO bool `json:"gso,omitempty"`
|
|
|
|
InterfaceName string `json:"interface_name,omitempty"`
|
|
|
|
LocalAddress Listable[string] `json:"local_address,omitempty"`
|
|
|
|
PrivateKey string `json:"private_key,omitempty"`
|
|
|
|
Peers Listable[WireGuardPeer] `json:"peers,omitempty"`
|
|
|
|
PeerPublicKey string `json:"peer_public_key,omitempty"`
|
|
|
|
PreSharedKey string `json:"pre_shared_key,omitempty"`
|
|
|
|
Reserved Listable[uint8] `json:"reserved,omitempty"`
|
|
|
|
Workers int `json:"workers,omitempty"`
|
|
|
|
MTU uint32 `json:"mtu,omitempty"`
|
|
|
|
Up string `json:"up,omitempty"`
|
|
|
|
UpMbps int `json:"up_mbps,omitempty"`
|
|
|
|
Down string `json:"down,omitempty"`
|
|
|
|
DownMbps int `json:"down_mbps,omitempty"`
|
|
|
|
Obfs *Obfs `json:"obfs,omitempty"`
|
|
|
|
Auth Listable[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"`
|
|
|
|
ExecutablePath string `json:"executable_path,omitempty"`
|
|
|
|
ExtraArgs Listable[string] `json:"extra_args,omitempty"`
|
|
|
|
DataDirectory string `json:"data_directory,omitempty"`
|
|
|
|
Options map[string]string `json:"torrc,omitempty"`
|
|
|
|
User string `json:"user,omitempty"`
|
|
|
|
PrivateKeyPath string `json:"private_key_path,omitempty"`
|
|
|
|
PrivateKeyPassphrase string `json:"private_key_passphrase,omitempty"`
|
|
|
|
HostKey Listable[string] `json:"host_key,omitempty"`
|
|
|
|
HostKeyAlgorithms Listable[string] `json:"host_key_algorithms,omitempty"`
|
|
|
|
ClientVersion string `json:"client_version,omitempty"`
|
|
|
|
ObfsParam string `json:"obfs_param,omitempty"`
|
|
|
|
Protocol string `json:"protocol,omitempty"`
|
|
|
|
ProtocolParam string `json:"protocol_param,omitempty"`
|
|
|
|
Flow string `json:"flow,omitempty"`
|
|
|
|
CongestionControl string `json:"congestion_control,omitempty"`
|
|
|
|
UDPRelayMode string `json:"udp_relay_mode,omitempty"`
|
|
|
|
UDPOverStream bool `json:"udp_over_stream,omitempty"`
|
|
|
|
ZeroRTTHandshake bool `json:"zero_rtt_handshake,omitempty"`
|
|
|
|
Heartbeat string `json:"heartbeat,omitempty"`
|
|
|
|
BrutalDebug bool `json:"brutal_debug,omitempty"`
|
|
|
|
Default string `json:"default,omitempty"`
|
|
|
|
Outbounds Listable[string] `json:"outbounds,omitempty"`
|
|
|
|
URL string `json:"url,omitempty"`
|
|
|
|
Interval string `json:"interval,omitempty"`
|
|
|
|
Tolerance uint16 `json:"tolerance,omitempty"`
|
|
|
|
IdleTimeout string `json:"idle_timeout,omitempty"`
|
|
|
|
InterruptExistConnections bool `json:"interrupt_exist_connections,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type WireGuardPeer struct {
|
2024-03-11 07:28:22 -04:00
|
|
|
Server string `json:"server"`
|
|
|
|
ServerPort uint16 `json:"server_port"`
|
|
|
|
PublicKey string `json:"public_key,omitempty"`
|
|
|
|
PreSharedKey string `json:"pre_shared_key,omitempty"`
|
|
|
|
AllowedIPs Listable[string] `json:"allowed_ips,omitempty"`
|
|
|
|
Reserved Listable[uint8] `json:"reserved,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type RouteOptions struct {
|
2024-03-11 07:28:22 -04:00
|
|
|
GeoIP *GeoIPOptions `json:"geoip,omitempty"`
|
|
|
|
Geosite *GeositeOptions `json:"geosite,omitempty"`
|
|
|
|
Rules Listable[Rule] `json:"rules,omitempty"`
|
|
|
|
RuleSet Listable[RuleSet] `json:"rule_set,omitempty"`
|
|
|
|
Final string `json:"final,omitempty"`
|
|
|
|
FindProcess bool `json:"find_process,omitempty"`
|
|
|
|
AutoDetectInterface bool `json:"auto_detect_interface,omitempty"`
|
|
|
|
OverrideAndroidVPN bool `json:"override_android_vpn,omitempty"`
|
|
|
|
DefaultInterface string `json:"default_interface,omitempty"`
|
|
|
|
DefaultMark int `json:"default_mark,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Rule struct {
|
2024-03-11 07:28:22 -04:00
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
Inbound Listable[string] `json:"inbound,omitempty"`
|
|
|
|
IPVersion int `json:"ip_version,omitempty"`
|
|
|
|
Network Listable[string] `json:"network,omitempty"`
|
|
|
|
AuthUser Listable[string] `json:"auth_user,omitempty"`
|
|
|
|
Protocol string `json:"protocol,omitempty"`
|
|
|
|
Domain Listable[string] `json:"domain,omitempty"`
|
|
|
|
DomainSuffix Listable[string] `json:"domain_suffix,omitempty"`
|
|
|
|
DomainKeyword Listable[string] `json:"domain_keyword,omitempty"`
|
|
|
|
DomainRegex Listable[string] `json:"domain_regex,omitempty"`
|
|
|
|
Geosite Listable[string] `json:"geosite,omitempty"`
|
|
|
|
SourceGeoIP Listable[string] `json:"source_geoip,omitempty"`
|
|
|
|
GeoIP Listable[string] `json:"geoip,omitempty"`
|
|
|
|
SourceIPCIDR Listable[string] `json:"source_ip_cidr,omitempty"`
|
|
|
|
SourceIPIsPrivate bool `json:"source_ip_is_private,omitempty"`
|
|
|
|
IPCIDR Listable[string] `json:"ip_cidr,omitempty"`
|
|
|
|
IPIsPrivate bool `json:"ip_is_private,omitempty"`
|
|
|
|
SourcePort Listable[uint16] `json:"source_port,omitempty"`
|
|
|
|
SourcePortRange Listable[string] `json:"source_port_range,omitempty"`
|
|
|
|
Port Listable[uint16] `json:"port,omitempty"`
|
|
|
|
PortRange Listable[string] `json:"port_range,omitempty"`
|
|
|
|
ProcessName Listable[string] `json:"process_name,omitempty"`
|
|
|
|
ProcessPath Listable[string] `json:"process_path,omitempty"`
|
|
|
|
PackageName Listable[string] `json:"package_name,omitempty"`
|
|
|
|
User Listable[string] `json:"user,omitempty"`
|
|
|
|
UserID Listable[int32] `json:"user_id,omitempty"`
|
|
|
|
ClashMode string `json:"clash_mode,omitempty"`
|
|
|
|
WIFISSID Listable[string] `json:"wifi_ssid,omitempty"`
|
|
|
|
WIFIBSSID Listable[string] `json:"wifi_bssid,omitempty"`
|
|
|
|
RuleSet Listable[string] `json:"rule_set,omitempty"`
|
|
|
|
RuleSetIPCIDRMatchSource bool `json:"rule_set_ipcidr_match_source,omitempty"`
|
|
|
|
Invert bool `json:"invert,omitempty"`
|
|
|
|
Outbound string `json:"outbound,omitempty"`
|
|
|
|
Mode string `json:"mode,omitempty"`
|
|
|
|
Rules Listable[Rule] `json:"rules,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type GeoIPOptions struct {
|
|
|
|
Path string `json:"path,omitempty"`
|
|
|
|
DownloadURL string `json:"download_url,omitempty"`
|
|
|
|
DownloadDetour string `json:"download_detour,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type GeositeOptions struct {
|
|
|
|
Path string `json:"path,omitempty"`
|
|
|
|
DownloadURL string `json:"download_url,omitempty"`
|
|
|
|
DownloadDetour string `json:"download_detour,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type RuleSet struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Tag string `json:"tag"`
|
|
|
|
Format string `json:"format"`
|
|
|
|
Path string `json:"path,omitempty"`
|
|
|
|
URL string `json:"url"`
|
|
|
|
DownloadDetour string `json:"download_detour,omitempty"`
|
|
|
|
UpdateInterval string `json:"update_interval,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ExperimentalOptions struct {
|
|
|
|
CacheFile *CacheFileOptions `json:"cache_file,omitempty"`
|
|
|
|
ClashAPI *ClashAPIOptions `json:"clash_api,omitempty"`
|
|
|
|
V2RayAPI *V2RayAPIOptions `json:"v2ray_api,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CacheFileOptions struct {
|
|
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
|
|
Path string `json:"path,omitempty"`
|
|
|
|
CacheID string `json:"cache_id,omitempty"`
|
|
|
|
StoreFakeIP bool `json:"store_fakeip,omitempty"`
|
|
|
|
StoreRDRC bool `json:"store_rdrc,omitempty"`
|
|
|
|
RDRCTimeout string `json:"rdrc_timeout,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ClashAPIOptions struct {
|
|
|
|
ExternalController string `json:"external_controller,omitempty"`
|
|
|
|
ExternalUI string `json:"external_ui,omitempty"`
|
|
|
|
ExternalUIDownloadURL string `json:"external_ui_download_url,omitempty"`
|
|
|
|
ExternalUIDownloadDetour string `json:"external_ui_download_detour,omitempty"`
|
|
|
|
Secret string `json:"secret,omitempty"`
|
|
|
|
DefaultMode string `json:"default_mode,omitempty"`
|
|
|
|
|
|
|
|
// Deprecated: migrated to global cache file
|
|
|
|
CacheFile string `json:"cache_file,omitempty"`
|
|
|
|
// Deprecated: migrated to global cache file
|
|
|
|
CacheID string `json:"cache_id,omitempty"`
|
|
|
|
// Deprecated: migrated to global cache file
|
|
|
|
StoreMode bool `json:"store_mode,omitempty"`
|
|
|
|
// Deprecated: migrated to global cache file
|
|
|
|
StoreSelected bool `json:"store_selected,omitempty"`
|
|
|
|
// Deprecated: migrated to global cache file
|
|
|
|
StoreFakeIP bool `json:"store_fakeip,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type V2RayAPIOptions struct {
|
|
|
|
Listen string `json:"listen,omitempty"`
|
|
|
|
Stats *V2RayStatsServiceOptions `json:"stats,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type V2RayStatsServiceOptions struct {
|
2024-03-11 07:28:22 -04:00
|
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
|
|
Inbounds Listable[string] `json:"inbounds,omitempty"`
|
|
|
|
Outbounds Listable[string] `json:"outbounds,omitempty"`
|
|
|
|
Users Listable[string] `json:"users,omitempty"`
|
2024-03-11 05:31:29 -04:00
|
|
|
}
|