Comparison

plugins/mod_pep.lua @ 9142:85bc624b8685

mod_pep: Correct comment about 'recipients' table
author Kim Alvefur <zash@zash.se>
date Mon, 06 Aug 2018 23:20:36 +0200
parent 9141:c1368fb756bf
child 9143:817f666d9037
comparison
equal deleted inserted replaced
9141:c1368fb756bf 9142:85bc624b8685
18 local empty_set = set_new(); 18 local empty_set = set_new();
19 19
20 -- username -> util.pubsub service object 20 -- username -> util.pubsub service object
21 local services = {}; 21 local services = {};
22 22
23 -- username -> recipient -> set of full JID 23 -- username -> recipient -> set of nodes
24 local recipients = {}; 24 local recipients = {};
25 local hash_map = {}; 25 local hash_map = {};
26 26
27 local host = module.host; 27 local host = module.host;
28 28