1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 06:16:09 -04:00

parse vnext address as ip

This commit is contained in:
V2Ray 2015-09-15 12:54:06 +02:00
parent b9475730fd
commit 29dcb433cf

View File

@ -2,6 +2,7 @@ package vmess
import (
"encoding/json"
"net"
"github.com/v2ray/v2ray-core"
"github.com/v2ray/v2ray-core/log"
@ -43,8 +44,12 @@ func (config VNextConfig) ToVNextServer() VNextServer {
}
users = append(users, vuser)
}
ip := net.ParseIP(config.Address)
if ip == nil {
panic(log.Error("Unable to parse VNext IP: %s", config.Address))
}
return VNextServer{
v2net.DomainAddress(config.Address, config.Port),
v2net.IPAddress(ip, config.Port),
users}
}