aboutsummaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-04-22 12:25:00 +0100
committerMatthew Wild <mwild1@gmail.com>2013-04-22 12:25:00 +0100
commitc981dcb50dd439cd986e20a60dde67c52b26b7ae (patch)
tree6b3a9242700816cd51c03c3ef226d101f0a2cca2 /net/http
parenta2fd9431f44785b19bda6cff5d72923d127be697 (diff)
downloadprosody-c981dcb50dd439cd986e20a60dde67c52b26b7ae.tar.gz
prosody-c981dcb50dd439cd986e20a60dde67c52b26b7ae.zip
net.server.http: Add a comment
Diffstat (limited to 'net/http')
-rw-r--r--net/http/server.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index 3c2b55d5..577b05ef 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -31,6 +31,7 @@ local recent_wildcard_events, max_cached_wildcard_events = {}, 10000;
local event_map = events._event_map;
setmetatable(events._handlers, {
+ -- Called when firing an event that doesn't exist (but may match a wildcard handler)
__index = function (handlers, curr_event)
if is_wildcard_event(curr_event) then return; end -- Wildcard events cannot be fired
-- Find all handlers that could match this event, sort them