aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-08-04 23:44:34 +0200
committerKim Alvefur <zash@zash.se>2018-08-04 23:44:34 +0200
commitccb00c9a4f0c20f61cd2935bb182b077a70a785b (patch)
treee5f81c7f4d51f6c3e82aa94f469727c1bd965a3b
parentf127fcd15f9bf84eaa77d4b938d2bf4884fef92a (diff)
downloadprosody-ccb00c9a4f0c20f61cd2935bb182b077a70a785b.tar.gz
prosody-ccb00c9a4f0c20f61cd2935bb182b077a70a785b.zip
mod_pep: Add comments describing root tables used for data
-rw-r--r--plugins/mod_pep.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index 66f0df5b..d278bad4 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.lua
@@ -17,7 +17,10 @@ local lib_pubsub = module:require "pubsub";
local empty_set = set_new();
+-- username -> util.pubsub service object
local services = {};
+
+-- username -> recipient -> set of full JID
local recipients = {};
local hash_map = {};