fix(route): default end value of the rangeItem

This commit is contained in:
ayooh 2024-07-08 16:02:49 +08:00 committed by ayo
parent c8caac9f67
commit 03ea18ce1c

View File

@ -39,7 +39,7 @@ func NewPortRangeItem(isSource bool, rangeList []string) (*PortRangeItem, error)
} }
} }
if subIndex == len(portRange)-1 { if subIndex == len(portRange)-1 {
end = 0xFF end = 0xFFFF
} else { } else {
end, err = strconv.ParseUint(portRange[subIndex+1:], 10, 16) end, err = strconv.ParseUint(portRange[subIndex+1:], 10, 16)
if err != nil { if err != nil {