diff options
author | Kim Alvefur <zash@zash.se> | 2012-07-07 23:22:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-07-07 23:22:15 +0200 |
commit | 32fc3a50676d43f165c00dc3a74dd01e475238a0 (patch) | |
tree | cb5a154d5c92bcebeddec7804641d0a8b672f3b3 /net/http.lua | |
parent | d7bbafcd372997dbec05e0dec67c1da41968050f (diff) | |
download | prosody-32fc3a50676d43f165c00dc3a74dd01e475238a0.tar.gz prosody-32fc3a50676d43f165c00dc3a74dd01e475238a0.zip |
net.http: Use base64 from util.encodings instead of luasocket
Diffstat (limited to 'net/http.lua')
-rw-r--r-- | net/http.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http.lua b/net/http.lua index f2061e00..6498f8fa 100644 --- a/net/http.lua +++ b/net/http.lua @@ -7,7 +7,7 @@ -- local socket = require "socket" -local mime = require "mime" +local b64 = require "util.encodings".base64.encode; local url = require "socket.url" local httpstream_new = require "util.httpstream".new; @@ -154,7 +154,7 @@ function request(u, ex, callback) }; if req.userinfo then - headers["Authorization"] = "Basic "..mime.b64(req.userinfo); + headers["Authorization"] = "Basic "..b64(req.userinfo); end if ex then |