Mercurial > prosody-hg
diff util/rfc6724.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 | d8300985f2bb |
| children |
line wrap: on
line diff
--- a/util/rfc6724.lua Fri Mar 17 16:23:12 2023 +0100 +++ b/util/rfc6724.lua Fri Mar 17 16:23:16 2023 +0100 @@ -9,7 +9,7 @@ -- during S2S connections. -- We can't hand this off to getaddrinfo, since it blocks -local ip_commonPrefixLength = require"util.ip".commonPrefixLength +local ip_commonPrefixLength = require"prosody.util.ip".commonPrefixLength local function commonPrefixLength(ipA, ipB) local len = ip_commonPrefixLength(ipA, ipB);
