Mercurial > prosody-hg
comparison util/openssl.lua @ 12975:d10957394a3c
util: Prefix module imports with prosody namespace
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 17 Mar 2023 16:23:16 +0100 |
| parents | 3b9de8dd71a3 |
| children |
comparison
equal
deleted
inserted
replaced
| 12974:ba409c67353b | 12975:d10957394a3c |
|---|---|
| 3 local s_format = string.format; | 3 local s_format = string.format; |
| 4 | 4 |
| 5 local oid_xmppaddr = "1.3.6.1.5.5.7.8.5"; -- [XMPP-CORE] | 5 local oid_xmppaddr = "1.3.6.1.5.5.7.8.5"; -- [XMPP-CORE] |
| 6 local oid_dnssrv = "1.3.6.1.5.5.7.8.7"; -- [SRV-ID] | 6 local oid_dnssrv = "1.3.6.1.5.5.7.8.7"; -- [SRV-ID] |
| 7 | 7 |
| 8 local idna_to_ascii = require "util.encodings".idna.to_ascii; | 8 local idna_to_ascii = require "prosody.util.encodings".idna.to_ascii; |
| 9 | 9 |
| 10 local _M = {}; | 10 local _M = {}; |
| 11 local config = {}; | 11 local config = {}; |
| 12 _M.config = config; | 12 _M.config = config; |
| 13 | 13 |
