Add pre-matching support for auto redirect

This commit is contained in:
世界 2025-12-26 05:56:29 +08:00
parent 6516c2d8f1
commit a850c4f8a1
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
9 changed files with 480 additions and 12 deletions

View file

@ -13,8 +13,9 @@ import (
)
var (
ErrDrop = E.New("drop by rule")
ErrReset = E.New("reset by rule")
ErrDrop = E.New("drop by rule")
ErrReset = E.New("reset by rule")
ErrBypass = E.New("bypass by rule")
)
type Stack interface {