136a7b
From 2becb920e431110c4afc4fa069b051c5940c2096 Mon Sep 17 00:00:00 2001
136a7b
From: Jeremy Evans <code@jeremyevans.net>
136a7b
Date: Fri, 29 May 2020 14:13:30 -0700
136a7b
Subject: [PATCH] Convert ip addresses to canonical form in
136a7b
 Resolv::DNS::Requester::UnconnectedUDP#sender
136a7b
136a7b
Otherwise, if the IP address given is not in canonical form, it
136a7b
won't match, and Resolv will ignore it.
136a7b
136a7b
Fixes [Bug #16439]
136a7b
---
136a7b
 lib/resolv.rb | 1 +
136a7b
 1 file changed, 1 insertion(+)
136a7b
136a7b
diff --git a/lib/resolv.rb b/lib/resolv.rb
136a7b
index e7b45e785a85..d78531e174fd 100644
136a7b
--- a/lib/resolv.rb
136a7b
+++ b/lib/resolv.rb
136a7b
@@ -774,6 +774,7 @@ def recv_reply(readable_socks)
136a7b
         end
136a7b
 
136a7b
         def sender(msg, data, host, port=Port)
136a7b
+          host = Addrinfo.ip(host).ip_address
136a7b
           lazy_initialize
136a7b
           sock = @socks_hash[host.index(':') ? "::" : "0.0.0.0"]
136a7b
           return nil if !sock