diff options
author | Kim Alvefur <zash@zash.se> | 2017-09-29 13:45:03 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-09-29 13:45:03 +0200 |
commit | 753dbfaf91c8855555370310ecd1ac228b2ad6c8 (patch) | |
tree | cd04cb8a03e077a91511ed8d509a4e2e83588628 /net | |
parent | 9c9d5678b0e9918da455eb49994c747d777b0775 (diff) | |
parent | 7c0cd1c22e29c9e3e9db902815ca38d73260fd68 (diff) | |
download | prosody-753dbfaf91c8855555370310ecd1ac228b2ad6c8.tar.gz prosody-753dbfaf91c8855555370310ecd1ac228b2ad6c8.zip |
Merge 0.10->trunk
Diffstat (limited to 'net')
-rw-r--r-- | net/adns.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/adns.lua b/net/adns.lua index f1196a6c..a19cbd59 100644 --- a/net/adns.lua +++ b/net/adns.lua @@ -12,6 +12,7 @@ local new_resolver = require "net.dns".resolver; local log = require "util.logger".init("adns"); local coroutine, tostring, pcall = coroutine, tostring, pcall; +local setmetatable = setmetatable; local function dummy_send(sock, data, i, j) return (j-i)+1; end |