net.resolvers.basic: Normalise IP literals, ensures net.server is happy 0.11
authorKim Alvefur <zash@zash.se>
Sun, 24 Nov 2019 04:41:07 +0100
branch0.11
changeset 10443 97c0f5fe5f41
parent 10441 fcfc8f4d14a8
child 10445 f2c9abc71f08
child 10522 9f50489c2033
net.resolvers.basic: Normalise IP literals, ensures net.server is happy
net/resolvers/basic.lua
--- a/net/resolvers/basic.lua	Sun Nov 24 04:26:44 2019 +0100
+++ b/net/resolvers/basic.lua	Sun Nov 24 04:41:07 2019 +0100
@@ -1,5 +1,6 @@
 local adns = require "net.adns";
 local inet_pton = require "util.net".pton;
+local inet_ntop = require "util.net".ntop;
 local idna_to_ascii = require "util.encodings".idna.to_ascii;
 
 local methods = {};
@@ -63,6 +64,7 @@
 		is_ip = inet_pton(hostname:sub(2,-2));
 	end
 	if is_ip then
+		hostname = inet_ntop(is_ip);
 		if #is_ip == 16 then
 			targets = { { conn_type.."6", hostname, port, extra } };
 		elseif #is_ip == 4 then