From 6642eb37459a155ecbf8a6af932427c374a767cd Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Tue, 18 Aug 2009 12:34:59 +0500 Subject: [PATCH] modulemanager: Module API functions add_item and add_feature updated to use the add_item API --- core/modulemanager.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/modulemanager.lua b/core/modulemanager.lua index a2c28070..ff31271b 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -368,9 +368,11 @@ addDiscoInfoHandler("*host", function(reply, to, from, node) end); function api:add_feature(xmlns) + self:add_item("feature", xmlns); features_table:set(self.host, self.name, xmlns, true); end function api:add_identity(category, type, name) + self:add_item("identity", {category = category, type = type, name = name}); identities_table:set(self.host, self.name, category.."\0"..type, {category = category, type = type, name = name}); end -- 2.30.2