]> git.ipfire.org Git - thirdparty/asterisk.git/commit
dnsmgr.c: dnsmgr_refresh() incorrectly flags change with DNS round-robin
authorAllan Nathanson <42244061+Allan-N@users.noreply.github.com>
Sun, 29 Sep 2024 22:45:51 +0000 (18:45 -0400)
committerAsterisk Development Team <asteriskteam@digium.com>
Thu, 14 Nov 2024 20:01:34 +0000 (20:01 +0000)
commitb104c5837d245abf9c36a0afb4c1dd5a0712033d
tree14f4591d81916225d0cb14ee78e74e8bffbc6a7e
parent3274a639b16d6c144a358631885a5db950152ae1
dnsmgr.c: dnsmgr_refresh() incorrectly flags change with DNS round-robin

The dnsmgr_refresh() function checks to see if the IP address associated
with a name/service has changed. The gotcha is that the ast_get_ip_or_srv()
function only returns the first IP address returned by the DNS query. If
there are multiple IPs associated with the name and the returned order is
not consistent (e.g. with DNS round-robin) then the other IP addresses are
not included in the comparison and the entry is flagged as changed even
though the IP is still valid.

Updated the code to check all IP addresses and flag a change only if the
original IP is no longer valid.

Resolves: #924
(cherry picked from commit 4a3319a58798ea94d8903717583f4a78111c4e5e)
include/asterisk/acl.h
main/acl.c
main/dnsmgr.c