mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
chore: trivial fixes
This commit is contained in:
parent
b5c1980202
commit
b07b12a651
2 changed files with 2 additions and 3 deletions
|
@ -102,8 +102,8 @@ type GeoLoader interface {
|
|||
// Compile compiles TextRules into a CompiledRuleSet.
|
||||
// Names in the outbounds map MUST be in all lower case.
|
||||
// We want on-demand loading of GeoIP/GeoSite databases, so instead of passing the
|
||||
// databases directly, we use a GeoLoader interface to load them. This way, they are
|
||||
// only loaded when there are at least one rule that uses them.
|
||||
// databases directly, we use a GeoLoader interface to load them only when needed
|
||||
// by at least one rule.
|
||||
func Compile[O Outbound](rules []TextRule, outbounds map[string]O,
|
||||
cacheSize int, geoLoader GeoLoader,
|
||||
) (CompiledRuleSet[O], error) {
|
||||
|
|
|
@ -269,7 +269,6 @@ func TestCompile(t *testing.T) {
|
|||
// Test Invalid Port Range Rule
|
||||
eb1 := 1
|
||||
invalidRules := []TextRule{
|
||||
|
||||
{
|
||||
Outbound: "eb1",
|
||||
Address: "1.1.2.0/24",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue