mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fix dns for poor Windows users, who have never seen a resolv.conf
This commit is contained in:
parent
30745e65bb
commit
246bfb79cc
1 changed files with 3 additions and 1 deletions
|
@ -501,7 +501,9 @@ function resolver:setnameserver (address) -- - - - - - - - - - setnameserver
|
|||
|
||||
|
||||
function resolver:adddefaultnameservers () -- - - - - adddefaultnameservers
|
||||
for line in io.lines ('/etc/resolv.conf') do
|
||||
local resolv_conf = io.open("/etc/resolv.conf");
|
||||
if not resolv_conf then return nil; end
|
||||
for line in resolv_conf:lines() do
|
||||
address = string.match (line, 'nameserver%s+(%d+%.%d+%.%d+%.%d+)')
|
||||
if address then self:addnameserver (address) end
|
||||
end end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue