mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Added temporary fix for srv on windows: using opendns nameservers
This commit is contained in:
parent
f1878f2666
commit
f80397b3b8
1 changed files with 10 additions and 5 deletions
15
net/dns.lua
15
net/dns.lua
|
@ -502,11 +502,16 @@ function resolver:setnameserver (address) -- - - - - - - - - - setnameserver
|
|||
|
||||
function resolver:adddefaultnameservers () -- - - - - adddefaultnameservers
|
||||
local resolv_conf = io.open("/etc/resolv.conf");
|
||||
if not resolv_conf then return nil; end
|
||||
for line in resolv_conf:lines() do
|
||||
local address = string.match (line, 'nameserver%s+(%d+%.%d+%.%d+%.%d+)')
|
||||
if address then self:addnameserver (address) end
|
||||
end end
|
||||
if resolv_conf then
|
||||
for line in resolv_conf:lines() do
|
||||
local address = string.match (line, 'nameserver%s+(%d+%.%d+%.%d+%.%d+)')
|
||||
if address then self:addnameserver (address) end
|
||||
end
|
||||
else -- FIXME correct for windows, using opendns nameservers for now
|
||||
self:addnameserver ("208.67.222.222")
|
||||
self:addnameserver ("208.67.220.220")
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
function resolver:getsocket (servernum) -- - - - - - - - - - - - - getsocket
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue