mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-22 02:07:50 +07:00
15 lines
344 B
Go
15 lines
344 B
Go
|
/*
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
* Copyright (c) 2023, v2rayA Organization <team@v2raya.org>
|
||
|
*/
|
||
|
|
||
|
package routing
|
||
|
|
||
|
import "github.com/v2rayA/dae/common/consts"
|
||
|
|
||
|
type DomainMatcher interface {
|
||
|
AddSet(bitIndex int, patterns []string, typ consts.RoutingDomainKey)
|
||
|
Build() error
|
||
|
MatchDomainBitmap(domain string) (bitmap []uint32)
|
||
|
}
|