Instruct the engine to do a late unload of the module.

git-svn-id: http://voip.null.ro/svn/yate@1717 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2008-02-08 08:13:08 +00:00
parent 3abc95133a
commit 4dce940f26
2 changed files with 4 additions and 0 deletions

View File

@ -513,6 +513,8 @@ MuxModule::MuxModule()
{
Output("Loaded module MUX");
m_prefix << debugName() << "/";
// This is an utility module: load early, unload late
Engine::pluginMode(Engine::LoadEarly);
}
MuxModule::~MuxModule()

View File

@ -244,6 +244,8 @@ ADModule::ADModule()
{
Output("Loaded module Analog Detector");
m_prefix << debugName() << "/";
// This is an utility module: load early, unload late
Engine::pluginMode(Engine::LoadEarly);
}
ADModule::~ADModule()