Mercurial > prosody-hg
view plugins/mod_ping.lua @ 13972:67b8f2ee41ed 13.0
mod_http_file_share: Improve debug logging around unexpected file sizes
These didn't have any debug logging and it can be confusing that the
"file too large" is also used for a cut-off chunked upload.
Not sure if it is worth it to double those checks into > and < just for
this.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 02 Oct 2025 21:04:20 +0200 |
| parents | 74b9e05af71e |
| children |
line wrap: on
line source
-- Prosody IM -- Copyright (C) 2008-2010 Matthew Wild -- Copyright (C) 2008-2010 Waqas Hussain -- -- This project is MIT/X11 licensed. Please see the -- COPYING file in the source package for more information. -- local st = require "prosody.util.stanza"; module:add_feature("urn:xmpp:ping"); local function ping_handler(event) event.origin.send(st.reply(event.stanza)); return true; end module:hook("iq-get/bare/urn:xmpp:ping:ping", ping_handler); module:hook("iq-get/host/urn:xmpp:ping:ping", ping_handler);
