Software /
code /
prosody
File
util/xpcall.lua @ 13729:b50eadfddd57 13.0
util.x509: Per RFC 9525, remove obsolete Common Name check
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 11 Feb 2024 13:34:13 +0100 (13 months ago) |
parent | 12975:d10957394a3c |
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; };