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 | a5c2b5abdf51291abbfe9629d1a649a95efbbb89 (patch) | |
tree | e5f81c7f4d51f6c3e82aa94f469727c1bd965a3b /plugins | |
parent | 83881eaed9b8201ec177bd5a1ef80fc5f6d8dc49 (diff) | |
download | prosody-a5c2b5abdf51291abbfe9629d1a649a95efbbb89.tar.gz prosody-a5c2b5abdf51291abbfe9629d1a649a95efbbb89.zip |
mod_pep: Add comments describing root tables used for data
Diffstat (limited to 'plugins')
-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 = {}; |