1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-24 11:24:41 -05:00
sub2sing-box/parser/port.go

24 lines
363 B
Go
Raw Normal View History

2024-03-22 04:10:15 -04:00
package parser
import (
"strconv"
)
func ParsePort(portStr string) (uint16, error) {
port, err := strconv.Atoi(portStr)
if err != nil {
return 0, &ParseError{
Type: ErrInvalidPort,
Message: portStr,
}
}
if port < 1 || port > 65535 {
return 0, &ParseError{
Type: ErrInvalidPort,
Message: portStr,
}
}
return uint16(port), nil
}