mirror of
https://github.com/daeuniverse/dae.git
synced 2025-07-23 14:19:38 +07:00
feat/optimize: add userspace routing and optimize domain routing (#18)
This commit is contained in:
@ -1,15 +1,17 @@
|
||||
/*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
* Copyright (c) since 2022, v2rayA Organization <team@v2raya.org>
|
||||
* Copyright (c) 2022-2023, v2rayA Organization <team@v2raya.org>
|
||||
*/
|
||||
|
||||
package consts
|
||||
|
||||
type RoutingDomainKey string
|
||||
|
||||
const (
|
||||
RoutingDomain_Full = "full"
|
||||
RoutingDomain_Keyword = "keyword"
|
||||
RoutingDomain_Suffix = "suffix"
|
||||
RoutingDomain_Regex = "regex"
|
||||
RoutingDomainKey_Full RoutingDomainKey = "full"
|
||||
RoutingDomainKey_Keyword RoutingDomainKey = "keyword"
|
||||
RoutingDomainKey_Suffix RoutingDomainKey = "suffix"
|
||||
RoutingDomainKey_Regex RoutingDomainKey = "regex"
|
||||
|
||||
Function_Domain = "domain"
|
||||
Function_Ip = "ip"
|
||||
|
Reference in New Issue
Block a user