1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-10-13 04:24:03 -04:00

simplify port range parsing

This commit is contained in:
v2ray
2016-02-06 00:13:13 +01:00
parent 0d8df60699
commit e467042fbc
2 changed files with 69 additions and 46 deletions

View File

@@ -1,15 +1,38 @@
package net
import (
"errors"
"strconv"
"github.com/v2ray/v2ray-core/common/serial"
)
var (
// ErrorInvalidPortRage indicates an error during port range parsing.
ErrorInvalidPortRange = errors.New("Invalid port range.")
)
type Port serial.Uint16Literal
func PortFromBytes(port []byte) Port {
return Port(serial.BytesLiteral(port).Uint16Value())
}
func PortFromInt(v int) (Port, error) {
if v <= 0 || v > 65535 {
return Port(0), ErrorInvalidPortRange
}
return Port(v), nil
}
func PortFromString(s string) (Port, error) {
v, err := strconv.Atoi(s)
if err != nil {
return Port(0), ErrorInvalidPortRange
}
return PortFromInt(v)
}
func (this Port) Value() uint16 {
return uint16(this)
}