Added status output of owner ID.

git-svn-id: http://voip.null.ro/svn/yate@595 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2005-12-09 21:24:57 +00:00
parent 1e7753a150
commit a332a0da89
1 changed files with 9 additions and 0 deletions

View File

@ -100,6 +100,8 @@ public:
{ return m_conn; }
inline const String& id() const
{ return m_id; }
inline const String& callId() const
{ return m_conn ? m_conn->id() : String::empty(); }
inline const String& media() const
{ return m_media; }
inline unsigned int bufSize() const
@ -737,6 +739,13 @@ YRTPPlugin::~YRTPPlugin()
void YRTPPlugin::statusParams(String& str)
{
str.append("chans=",",") << s_calls.count();
String tmp;
ObjList* l = s_calls.skipNull();
for (; l; l=l->skipNext()) {
YRTPWrapper* w = static_cast<YRTPWrapper*>(l->get());
tmp.append(w->id(),",") << "=" << w->callId();
}
str << ";" << tmp;
}
void YRTPPlugin::initialize()