From 98f1102f06f5e593cd8f186271db5cadf0e28417 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 12 Aug 2009 18:37:55 +0200 Subject: DBUS: exposed method SetPluginSettings --- lib/CommLayer/CommLayerServerDBus.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/CommLayer/CommLayerServerDBus.cpp') diff --git a/lib/CommLayer/CommLayerServerDBus.cpp b/lib/CommLayer/CommLayerServerDBus.cpp index 4b6c99b0..5d5972a0 100644 --- a/lib/CommLayer/CommLayerServerDBus.cpp +++ b/lib/CommLayer/CommLayerServerDBus.cpp @@ -133,3 +133,9 @@ void CCommLayerServerDBus::UnRegisterPlugin(const std::string& pName) return m_pObserver->UnRegisterPlugin(pName); } +void CCommLayerServerDBus::SetPluginSettings(const std::string& pName, const std::string& pSender, const map_plugin_settings_t& pSettings) +{ + unsigned long unix_uid = m_pConn->sender_unix_uid(pSender.c_str()); + return m_pObserver->SetPluginSettings(pName, to_string(unix_uid), pSettings); +} + -- cgit