feat(proxy): enhance proxy and group handling with new configuration options

This commit is contained in:
Chang lue Tsen
2025-07-17 10:13:04 -04:00
committed by Leif Draven
parent 82e447c55e
commit 224365ce79
9 changed files with 315 additions and 171 deletions
+6 -5
View File
@@ -9,11 +9,12 @@ import (
)
const (
RelayModeNone = "none"
RelayModeAll = "all"
RelayModeRandom = "random"
RuleGroupTypeBan = "ban"
RuleGroupTypeAuto = "auto"
RelayModeNone = "none"
RelayModeAll = "all"
RelayModeRandom = "random"
RuleGroupTypeReject = "reject"
RuleGroupTypeDefault = "default"
RuleGroupTypeDirect = "direct"
)
type ServerFilter struct {