Mercurial > prosody-modules
comparison mod_cache_c2s_caps/mod_cache_c2s_caps.lua @ 2901:0fb44258d2cf
mod_cache_c2s_caps: Remove unused import (thanks luacheck)
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Wed, 07 Mar 2018 17:41:22 +0100 |
parents | 0273d7583373 |
children | b003d72d9ce6 |
comparison
equal
deleted
inserted
replaced
2900:0286ccacec7c | 2901:0fb44258d2cf |
---|---|
1 local st_iq = require "util.stanza".iq; | 1 local st_iq = require "util.stanza".iq; |
2 local jid_split = require "util.jid".split; | |
3 local uuid_gen = require "util.uuid".generate; | 2 local uuid_gen = require "util.uuid".generate; |
4 local calculate_hash = require "util.caps".calculate_hash; | 3 local calculate_hash = require "util.caps".calculate_hash; |
5 | 4 |
6 -- Map of jid..node, to avoid querying the same client multiple times for the same value. | 5 -- Map of jid..node, to avoid querying the same client multiple times for the same value. |
7 local in_flight_iqs = {} | 6 local in_flight_iqs = {} |