mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-01-03 15:55:20 -05:00
BytesLiteral.String
This commit is contained in:
@@ -9,6 +9,7 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/v2ray/v2ray-core/common/log"
|
||||
"github.com/v2ray/v2ray-core/common/serial"
|
||||
)
|
||||
|
||||
var (
|
||||
@@ -20,7 +21,7 @@ func (this *PortRange) UnmarshalJSON(data []byte) error {
|
||||
err := json.Unmarshal(data, &maybeint)
|
||||
if err == nil {
|
||||
if maybeint <= 0 || maybeint >= 65535 {
|
||||
log.Error("Invalid port [", string(data), "]")
|
||||
log.Error("Invalid port [", serial.BytesLiteral(data), "]")
|
||||
return InvalidPortRange
|
||||
}
|
||||
this.From = Port(maybeint)
|
||||
|
||||
Reference in New Issue
Block a user