mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
chore: adjust comments
This commit is contained in:
parent
9a80fe589a
commit
15b94d5c40
1 changed files with 4 additions and 4 deletions
|
@ -101,10 +101,9 @@ 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.
|
||||||
// geoipFunc is a function that returns the GeoIP database needed by the GeoIP matcher.
|
// We want on-demand loading of GeoIP/GeoSite databases, so instead of passing the
|
||||||
// It will be called every time a GeoIP matcher is used during compilation, but won't
|
// databases directly, we use a GeoLoader interface to load them. This way, they are
|
||||||
// be called if there is no GeoIP rule. We use a function here so that database loading
|
// only loaded when there are at least one rule that uses them.
|
||||||
// is on-demand (only required if used by rules).
|
|
||||||
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) {
|
||||||
|
@ -181,6 +180,7 @@ func parseProtoPort(protoPort string) (Protocol, uint16, uint16, bool) {
|
||||||
return ProtocolBoth, 0, 0, false
|
return ProtocolBoth, 0, 0, false
|
||||||
}
|
}
|
||||||
if parts[1] != "*" {
|
if parts[1] != "*" {
|
||||||
|
// We allow either a single port or a range (e.g. "1000-2000")
|
||||||
ports := strings.SplitN(strings.TrimSpace(parts[1]), "-", 2)
|
ports := strings.SplitN(strings.TrimSpace(parts[1]), "-", 2)
|
||||||
if len(ports) == 1 {
|
if len(ports) == 1 {
|
||||||
p64, err := strconv.ParseUint(parts[1], 10, 16)
|
p64, err := strconv.ParseUint(parts[1], 10, 16)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue