diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-04 23:44:34 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-04 23:44:34 +0200 |
commit | ccb00c9a4f0c20f61cd2935bb182b077a70a785b (patch) | |
tree | e5f81c7f4d51f6c3e82aa94f469727c1bd965a3b | |
parent | f127fcd15f9bf84eaa77d4b938d2bf4884fef92a (diff) | |
download | prosody-ccb00c9a4f0c20f61cd2935bb182b077a70a785b.tar.gz prosody-ccb00c9a4f0c20f61cd2935bb182b077a70a785b.zip |
mod_pep: Add comments describing root tables used for data
-rw-r--r-- | plugins/mod_pep.lua | 3 |
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 = {}; |