mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
24 lines
412 B
Go
24 lines
412 B
Go
package serial
|
|
|
|
type Bytes interface {
|
|
Bytes() []byte
|
|
}
|
|
|
|
type BytesLiteral []byte
|
|
|
|
func (this BytesLiteral) Value() []byte {
|
|
return []byte(this)
|
|
}
|
|
|
|
func (this BytesLiteral) Int64Value() int64 {
|
|
value := this.Value()
|
|
return int64(value[0])<<56 +
|
|
int64(value[1])<<48 +
|
|
int64(value[2])<<40 +
|
|
int64(value[3])<<32 +
|
|
int64(value[4])<<24 +
|
|
int64(value[5])<<16 +
|
|
int64(value[6])<<8 +
|
|
int64(value[7])
|
|
}
|