From 1bb602767410f4d573266e7b8eb78b1469273134 Mon Sep 17 00:00:00 2001 From: Aleksander Spro Date: Thu, 14 Sep 2023 20:58:30 +0200 Subject: [PATCH] Update DanNet TLO defs --- mq/plugins/DanNet/_TLO.lua | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/mq/plugins/DanNet/_TLO.lua b/mq/plugins/DanNet/_TLO.lua index 55de17a..fefe621 100644 --- a/mq/plugins/DanNet/_TLO.lua +++ b/mq/plugins/DanNet/_TLO.lua @@ -4,21 +4,22 @@ ---@class TLO.DanNet ---@field Name MQString # Current node name (fully qualified) ---@field Version MQString # Current build version ----@field Debug MQString # Debugging flag ----@field LocalEcho MQString # Local echo flag (outgoing echo) ----@field CommandEcho MQString # Command echo (incoming commands) ----@field FullNames MQString # Print fully qualified names? ----@field FrontDelim MQString # Use a front | in arrays? +---@field Debug MQBoolean # Debugging flag +---@field LocalEcho MQBoolean # Local echo flag (outgoing echo) +---@field CommandEcho MQBoolean # Command echo (incoming commands) +---@field FullNames MQBoolean # Print fully qualified names? +---@field FrontDelim MQBoolean # Use a front | in arrays? ---@field Timeout MQString # Timeout for implicit delay in /dquery and /dobserve commands ----@field ObserveDelay MQString # Delay between observe broadcasts (in ms) ----@field Evasive MQString # Time to classify a peer as evasive (in ms) ----@field Expired MQString # Keepalive time for non-responding peers (in ms) ----@field Keepalive MQString # Keepalive time for local actor pipe (in ms) ----@field PeerCount MQString # Number of connected peers +---@field ObserveDelay MQInt # Delay between observe broadcasts (in ms) +---@field Evasive MQInt # Time to classify a peer as evasive (in ms) +---@field EvasiveRefresh MQBoolean +---@field Expired MQInt # Keepalive time for non-responding peers (in ms) +---@field Keepalive MQInt # Keepalive time for local actor pipe (in ms) +---@field PeerCount MQInt # Number of connected peers ---@field Peers MQString # List of connected peers ----@field GroupCount MQString # Number of all groups +---@field GroupCount MQInt # Number of all groups ---@field Groups MQString # List of all groups ----@field JoinedCount MQString # Number of joined groups +---@field JoinedCount MQInt # Number of joined groups ---@field Joined MQString # List of joined groups TLO.DanNet = {}