mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
24 lines
415 B
Go
24 lines
415 B
Go
package net
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/common/serial"
|
|
)
|
|
|
|
type Port serial.Uint16Literal
|
|
|
|
func PortFromBytes(port []byte) Port {
|
|
return Port(uint16(port[0])<<8 + uint16(port[1]))
|
|
}
|
|
|
|
func (this Port) Value() uint16 {
|
|
return uint16(this)
|
|
}
|
|
|
|
func (this Port) Bytes() []byte {
|
|
return []byte{byte(this >> 8), byte(this)}
|
|
}
|
|
|
|
func (this Port) String() string {
|
|
return serial.Uint16Literal(this).String()
|
|
}
|