1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-31 06:25:32 -05:00

BytesLiteral.String

This commit is contained in:
v2ray
2016-01-18 12:58:04 +01:00
parent 4dd771170c
commit 65d5c07533
3 changed files with 8 additions and 2 deletions

View File

@@ -21,3 +21,7 @@ func (this BytesLiteral) Int64Value() int64 {
int64(value[6])<<8 +
int64(value[7])
}
func (this BytesLiteral) String() string {
return string(this.Value())
}