1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-09 03:37:37 -05:00
v2fly/common/net/port.go

70 lines
1.8 KiB
Go
Raw Normal View History

2015-12-02 06:47:54 -05:00
package net
import (
2016-02-05 18:13:13 -05:00
"errors"
"strconv"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/serial"
2015-12-02 06:47:54 -05:00
)
2016-02-05 18:13:13 -05:00
var (
2016-06-27 02:53:35 -04:00
// ErrInvalidPortRage indicates an error during port range parsing.
ErrInvalidPortRange = errors.New("Invalid port range.")
2016-02-05 18:13:13 -05:00
)
2016-02-06 04:54:41 -05:00
// Port represents a network port in TCP and UDP protocol.
2016-05-24 15:55:46 -04:00
type Port uint16
2015-12-02 06:47:54 -05:00
2016-02-06 04:54:41 -05: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 15:44:01 -05:00
func PortFromBytes(port []byte) Port {
2016-05-24 16:09:22 -04:00
return Port(serial.BytesToUint16(port))
2015-12-02 06:47:54 -05:00
}
2016-02-06 04:54:41 -05:00
// PortFromInt converts an integer to a Port.
// @error when the integer is not positive or larger then 65535
2016-08-26 18:04:35 -04:00
func PortFromInt(v uint32) (Port, error) {
if v > 65535 {
2016-06-27 02:53:35 -04:00
return Port(0), ErrInvalidPortRange
2016-02-05 18:13:13 -05:00
}
return Port(v), nil
}
2016-02-06 04:54:41 -05: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 18:13:13 -05:00
func PortFromString(s string) (Port, error) {
2016-08-26 18:04:35 -04:00
v, err := strconv.ParseUint(s, 10, 32)
2016-02-05 18:13:13 -05:00
if err != nil {
2016-06-27 02:53:35 -04:00
return Port(0), ErrInvalidPortRange
2016-02-05 18:13:13 -05:00
}
2016-08-26 18:04:35 -04:00
return PortFromInt(uint32(v))
2016-02-05 18:13:13 -05:00
}
2016-02-06 04:54:41 -05:00
// Value return the correspoding uint16 value of this Port.
2015-12-02 06:47:54 -05:00
func (this Port) Value() uint16 {
return uint16(this)
}
2016-02-06 04:54:41 -05:00
// Bytes returns the correspoding bytes of this Port, in big endian order.
2016-06-26 16:34:48 -04:00
func (this Port) Bytes(b []byte) []byte {
return serial.Uint16ToBytes(this.Value(), b)
2015-12-02 06:47:54 -05:00
}
2016-02-06 04:54:41 -05:00
// String returns the string presentation of this Port.
2015-12-02 06:47:54 -05:00
func (this Port) String() string {
2016-05-24 15:55:46 -04:00
return serial.Uint16ToString(this.Value())
2015-12-02 06:47:54 -05:00
}
2016-01-15 07:39:36 -05:00
2016-08-26 18:04:35 -04:00
func (this PortRange) FromPort() Port {
return Port(this.From)
}
func (this PortRange) ToPort() Port {
return Port(this.To)
2016-01-15 07:39:36 -05:00
}
2016-01-17 10:20:49 -05:00
2016-02-06 04:54:41 -05:00
// Contains returns true if the given port is within the range of this PortRange.
2016-01-17 10:20:49 -05:00
func (this PortRange) Contains(port Port) bool {
2016-08-26 18:04:35 -04:00
return this.FromPort() <= port && port <= this.ToPort()
2016-01-17 10:20:49 -05:00
}