1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-11-23 12:02:58 -05:00
This commit is contained in:
Darien Raymond
2017-02-08 10:01:22 +01:00
parent d2968e08ea
commit 5de7fb8bc2
6 changed files with 17 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ func DestinationFromAddr(addr net.Addr) Destination {
case *net.UDPAddr:
return UDPDestination(IPAddress(addr.IP), Port(addr.Port))
default:
panic("Unknown address type.")
panic("Net: Unknown address type.")
}
}