1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-17 17:36:08 -04:00
v2fly/common/net/port.go
2016-01-24 22:28:44 +01:00

33 lines
563 B
Go

package net
import (
"github.com/v2ray/v2ray-core/common/serial"
)
type Port serial.Uint16Literal
func PortFromBytes(port []byte) Port {
return Port(serial.BytesLiteral(port).Uint16Value())
}
func (this Port) Value() uint16 {
return uint16(this)
}
func (this Port) Bytes() []byte {
return serial.Uint16Literal(this).Bytes()
}
func (this Port) String() string {
return serial.Uint16Literal(this).String()
}
type PortRange struct {
From Port
To Port
}
func (this PortRange) Contains(port Port) bool {
return this.From <= port && port <= this.To
}