mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 18:28:00 -05:00
72 lines
1.1 KiB
Go
72 lines
1.1 KiB
Go
package serial
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
type Uint16 interface {
|
|
Value() uint16
|
|
}
|
|
|
|
type Uint16Literal uint16
|
|
|
|
func (this Uint16Literal) String() string {
|
|
return strconv.Itoa(int(this))
|
|
}
|
|
|
|
func (this Uint16Literal) Value() uint16 {
|
|
return uint16(this)
|
|
}
|
|
|
|
func (this Uint16Literal) Bytes() []byte {
|
|
return []byte{byte(this >> 8), byte(this)}
|
|
}
|
|
|
|
type Int interface {
|
|
Value() int
|
|
}
|
|
|
|
type IntLiteral int
|
|
|
|
func (this IntLiteral) String() string {
|
|
return strconv.Itoa(int(this))
|
|
}
|
|
|
|
func (this IntLiteral) Value() int {
|
|
return int(this)
|
|
}
|
|
|
|
func (this IntLiteral) Bytes() []byte {
|
|
value := this.Value()
|
|
return []byte{
|
|
byte(value >> 24),
|
|
byte(value >> 16),
|
|
byte(value >> 8),
|
|
byte(value),
|
|
}
|
|
}
|
|
|
|
type Int64Literal int64
|
|
|
|
func (this Int64Literal) String() string {
|
|
return strconv.FormatInt(this.Value(), 10)
|
|
}
|
|
|
|
func (this Int64Literal) Value() int64 {
|
|
return int64(this)
|
|
}
|
|
|
|
func (this Int64Literal) Bytes() []byte {
|
|
value := this.Value()
|
|
return []byte{
|
|
byte(value >> 56),
|
|
byte(value >> 48),
|
|
byte(value >> 40),
|
|
byte(value >> 32),
|
|
byte(value >> 24),
|
|
byte(value >> 16),
|
|
byte(value >> 8),
|
|
byte(value),
|
|
}
|
|
}
|