1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
v2fly/common/net/port.go

68 lines
1.8 KiB
Go
Raw Normal View History

2015-12-02 11:47:54 +00:00
package net
import (
2016-02-05 23:13:13 +00:00
"errors"
"strconv"
2015-12-03 15:57:23 +00:00
"github.com/v2ray/v2ray-core/common/serial"
2015-12-02 11:47:54 +00:00
)
2016-02-05 23:13:13 +00:00
var (
// ErrorInvalidPortRage indicates an error during port range parsing.
ErrorInvalidPortRange = errors.New("Invalid port range.")
)
2016-02-06 09:54:41 +00:00
// Port represents a network port in TCP and UDP protocol.
2015-12-03 15:57:23 +00:00
type Port serial.Uint16Literal
2015-12-02 11:47:54 +00:00
2016-02-06 09:54:41 +00:00
// PortFromBytes converts a byte array to a Port, assuming bytes are in big endian order.
// @unsafe Caller must ensure that the byte array has at least 2 elements.
2015-12-02 20:44:01 +00:00
func PortFromBytes(port []byte) Port {
2016-05-23 18:21:23 +00:00
return Port(serial.BytesT(port).Uint16Value())
2015-12-02 11:47:54 +00:00
}
2016-02-06 09:54:41 +00:00
// PortFromInt converts an integer to a Port.
// @error when the integer is not positive or larger then 65535
2016-02-05 23:13:13 +00:00
func PortFromInt(v int) (Port, error) {
if v <= 0 || v > 65535 {
return Port(0), ErrorInvalidPortRange
}
return Port(v), nil
}
2016-02-06 09:54:41 +00:00
// PortFromString converts a string to a Port.
// @error when the string is not an integer or the integral value is a not a valid Port.
2016-02-05 23:13:13 +00:00
func PortFromString(s string) (Port, error) {
v, err := strconv.Atoi(s)
if err != nil {
return Port(0), ErrorInvalidPortRange
}
return PortFromInt(v)
}
2016-02-06 09:54:41 +00:00
// Value return the correspoding uint16 value of this Port.
2015-12-02 11:47:54 +00:00
func (this Port) Value() uint16 {
return uint16(this)
}
2016-02-06 09:54:41 +00:00
// Bytes returns the correspoding bytes of this Port, in big endian order.
2015-12-02 11:47:54 +00:00
func (this Port) Bytes() []byte {
2016-01-19 00:21:07 +00:00
return serial.Uint16Literal(this).Bytes()
2015-12-02 11:47:54 +00:00
}
2016-02-06 09:54:41 +00:00
// String returns the string presentation of this Port.
2015-12-02 11:47:54 +00:00
func (this Port) String() string {
2015-12-03 15:57:23 +00:00
return serial.Uint16Literal(this).String()
2015-12-02 11:47:54 +00:00
}
2016-01-15 12:39:36 +00:00
2016-02-06 09:54:41 +00:00
// PortRange represents a range of ports.
2016-01-15 12:39:36 +00:00
type PortRange struct {
From Port
To Port
}
2016-01-17 15:20:49 +00:00
2016-02-06 09:54:41 +00:00
// Contains returns true if the given port is within the range of this PortRange.
2016-01-17 15:20:49 +00:00
func (this PortRange) Contains(port Port) bool {
return this.From <= port && port <= this.To
}