Software / code / prosody
Comparison
plugins/mod_smacks.lua @ 13213:50324f66ca2a
plugins: Use integer config API with interval specification where sensible
Many of these fall into a few categories:
- util.cache size, must be >= 1
- byte or item counts that logically can't be negative
- port numbers that should be in 1..0xffff
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Mon, 17 Jul 2023 01:38:54 +0200 |
| parent | 13209:c8d949cf6b09 |
| child | 13419:41a587613a0e |
comparison
equal
deleted
inserted
replaced
| 13212:3e6e98cc63e9 | 13213:50324f66ca2a |
|---|---|
| 64 local xmlns_sm3 = "urn:xmpp:sm:3"; | 64 local xmlns_sm3 = "urn:xmpp:sm:3"; |
| 65 | 65 |
| 66 local sm2_attr = { xmlns = xmlns_sm2 }; | 66 local sm2_attr = { xmlns = xmlns_sm2 }; |
| 67 local sm3_attr = { xmlns = xmlns_sm3 }; | 67 local sm3_attr = { xmlns = xmlns_sm3 }; |
| 68 | 68 |
| 69 local queue_size = module:get_option_number("smacks_max_queue_size", 500); | 69 local queue_size = module:get_option_integer("smacks_max_queue_size", 500, 1); |
| 70 local resume_timeout = module:get_option_period("smacks_hibernation_time", "10 minutes"); | 70 local resume_timeout = module:get_option_period("smacks_hibernation_time", "10 minutes"); |
| 71 local s2s_smacks = module:get_option_boolean("smacks_enabled_s2s", true); | 71 local s2s_smacks = module:get_option_boolean("smacks_enabled_s2s", true); |
| 72 local s2s_resend = module:get_option_boolean("smacks_s2s_resend", false); | 72 local s2s_resend = module:get_option_boolean("smacks_s2s_resend", false); |
| 73 local max_unacked_stanzas = module:get_option_number("smacks_max_unacked_stanzas", 0); | 73 local max_unacked_stanzas = module:get_option_integer("smacks_max_unacked_stanzas", 0, 0); |
| 74 local max_inactive_unacked_stanzas = module:get_option_number("smacks_max_inactive_unacked_stanzas", 256); | 74 local max_inactive_unacked_stanzas = module:get_option_integer("smacks_max_inactive_unacked_stanzas", 256, 0); |
| 75 local delayed_ack_timeout = module:get_option_period("smacks_max_ack_delay", 30); | 75 local delayed_ack_timeout = module:get_option_period("smacks_max_ack_delay", 30); |
| 76 local max_old_sessions = module:get_option_number("smacks_max_old_sessions", 10); | 76 local max_old_sessions = module:get_option_integer("smacks_max_old_sessions", 10, 0); |
| 77 | 77 |
| 78 local c2s_sessions = module:shared("/*/c2s/sessions"); | 78 local c2s_sessions = module:shared("/*/c2s/sessions"); |
| 79 local local_sessions = prosody.hosts[module.host].sessions; | 79 local local_sessions = prosody.hosts[module.host].sessions; |
| 80 | 80 |
| 81 local function format_h(h) if h then return string.format("%d", h) end end | 81 local function format_h(h) if h then return string.format("%d", h) end end |