From 0c220601e5f69dd9505bb436d19da82b5de089f8 Mon Sep 17 00:00:00 2001 From: paulc Date: Fri, 9 Jun 2006 13:20:31 +0000 Subject: [PATCH] Added more clases to kdoc documentation. Fixed bug in text message handling in h323chan. git-svn-id: http://yate.null.ro/svn/yate/trunk@847 acf43c95-373e-0410-b603-e72c3f656dc1 --- Makefile.in | 9 +++++++-- modules/h323chan.cpp | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index 4ef5ee6b..8e0380ed 100644 --- a/Makefile.in +++ b/Makefile.in @@ -33,7 +33,9 @@ LINK = $(CXX) $(LDFLAGS) DOCGEN := ifneq (_@KDOC_BIN@,_) -DOCGEN := @KDOC_BIN@ -C ./kdoc-filter.sh -d docs/api/ $(INCS) contrib/ysip/yatesip.h contrib/yrtp/yatertp.h +DOCGEN := @KDOC_BIN@ -C ./kdoc-filter.sh -d docs/api/ $(INCS) \ + contrib/ysip/yatesip.h contrib/yrtp/yatertp.h \ + contrib/ysip/yatepbx.h contrib/yrtp/yatess7.h endif ifneq (_@DOXYGEN_BIN@,_) DOCGEN := @DOXYGEN_BIN@ Doxyfile @@ -118,7 +120,10 @@ apidocs: @srcdir@/docs/api/index.html @srcdir@/docs/api/index.html: Doxyfile \ @srcdir@/yateclass.h @srcdir@/yatengine.h \ @srcdir@/yatephone.h @srcdir@/yatecbase.h \ - @srcdir@/contrib/ysip/yatesip.h @srcdir@/contrib/yrtp/yatertp.h + @srcdir@/contrib/ysip/yatesip.h \ + @srcdir@/contrib/yrtp/yatertp.h \ + @srcdir@/contrib/ypbx/yatepbx.h \ + @srcdir@/contrib/yss7/yatess7.h $(MAKE) apidocs-build .PHONY: strip sex love war diff --git a/modules/h323chan.cpp b/modules/h323chan.cpp index 52fa9a35..c08a4c70 100644 --- a/modules/h323chan.cpp +++ b/modules/h323chan.cpp @@ -1242,7 +1242,7 @@ void YateH323Connection::OnUserInputString(const PString &value) if (!m_chan) return; String text((const char *)value); - const char *type = text.startSkip("MSG") ? "chan.text" : "chan.dtmf"; + const char *type = text.startSkip("MSG",false) ? "chan.text" : "chan.dtmf"; Message *m = m_chan->message(type,false,true); lock.drop(); m->addParam("text",text);