chore: trivial fixes

This commit is contained in:
Toby 2024-03-12 20:26:13 -07:00
parent b5c1980202
commit b07b12a651
2 changed files with 2 additions and 3 deletions

View file

@ -102,8 +102,8 @@ type GeoLoader interface {
// Compile compiles TextRules into a CompiledRuleSet. // Compile compiles TextRules into a CompiledRuleSet.
// Names in the outbounds map MUST be in all lower case. // 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 // 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 // databases directly, we use a GeoLoader interface to load them only when needed
// only loaded when there are at least one rule that uses them. // by at least one rule.
func Compile[O Outbound](rules []TextRule, outbounds map[string]O, func Compile[O Outbound](rules []TextRule, outbounds map[string]O,
cacheSize int, geoLoader GeoLoader, cacheSize int, geoLoader GeoLoader,
) (CompiledRuleSet[O], error) { ) (CompiledRuleSet[O], error) {

View file

@ -269,7 +269,6 @@ func TestCompile(t *testing.T) {
// Test Invalid Port Range Rule // Test Invalid Port Range Rule
eb1 := 1 eb1 := 1
invalidRules := []TextRule{ invalidRules := []TextRule{
{ {
Outbound: "eb1", Outbound: "eb1",
Address: "1.1.2.0/24", Address: "1.1.2.0/24",