Removed Driver::msgStatus() since was identical to the base class Module.

git-svn-id: http://yate.null.ro/svn/yate/trunk@1311 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2007-05-12 13:41:50 +00:00
parent 81eab01b7c
commit f2d39ae988
2 changed files with 0 additions and 22 deletions

View File

@ -1192,22 +1192,6 @@ void Driver::genUpdate(Message& msg)
msg.addParam("chans",String(m_chans.count()));
}
void Driver::msgStatus(Message& msg)
{
String mod, par, det;
bool details = msg.getBoolValue("details",true);
lock();
statusModule(mod);
statusParams(par);
if (details)
statusDetail(det);
unlock();
msg.retValue() << mod << ";" << par;
if (details)
msg.retValue() << ";" << det;
msg.retValue() << "\r\n";
}
void Driver::statusModule(String& str)
{
Module::statusModule(str);

View File

@ -2017,12 +2017,6 @@ protected:
*/
virtual bool commandComplete(Message& msg, const String& partLine, const String& partWord);
/**
* Status message handler that is invoked only for matching messages.
* @param msg Status message
*/
virtual void msgStatus(Message& msg);
/**
* Build the module identification part of the status answer
* @param str String variable to fill up