Mercurial > prosody-hg
view util/xpcall.lua @ 14110:f587496eb08f 13.0
util.x509: Add support for iPAddress certs
Issued by Let's Encrypt and requested by some users.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 13 Jan 2026 07:13:25 +0100 |
| parents | d10957394a3c |
| children |
line wrap: on
line source
local xpcall = xpcall; if select(2, xpcall(function (x) return x end, function () end, "test")) ~= "test" then xpcall = require"prosody.util.compat".xpcall; end return { xpcall = xpcall; };
