]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
revert changes from PProcess to PLibraryProcess due console locking issue.
authorroot <root@proxy-2.(none)>
Tue, 3 Aug 2010 14:09:56 +0000 (18:09 +0400)
committerroot <root@proxy-2.(none)>
Tue, 3 Aug 2010 14:09:56 +0000 (18:09 +0400)
src/mod/endpoints/mod_h323/mod_h323.cpp
src/mod/endpoints/mod_h323/mod_h323.h

index bc6e84a63e7866ba3a44bc3138dc8e7eb97ea890..b17536bb46b1fb7748893bfc6cc788474e44a025 100644 (file)
@@ -338,16 +338,14 @@ PString GetH245CodecName(const H323Capability* cap)
 }
 
 FSProcess::FSProcess()
-       : PProcess("FreeSWITCH", "mod_h323", 1, 0, AlphaCode, 1)
-       , m_h323endpoint(NULL)
-{
+       : PLibraryProcess("Test", "mod_h323", 1, 0, AlphaCode, 1)
+       , m_h323endpoint(NULL){
        PTrace::SetLevel(4);
        PTrace::SetOptions(PTrace::TraceLevel);
        PTrace::SetStream(new FSTrace);
 }
 
-FSProcess::~FSProcess()
-{
+FSProcess::~FSProcess(){
        delete m_h323endpoint;
 }
 
index a88abf5301be277dd54acfc5a0bb2390a9f111c9..9383d03b86e4d83a510f2cc52eefb0c3d14e5051 100644 (file)
@@ -208,8 +208,8 @@ switch_status_t name(type1 name1)
 switch_status_t name(type1 name1, type2 name2, type3 name3)
 
 class FSH323EndPoint;
-class FSProcess:public PProcess {
-       PCLASSINFO(FSProcess, PProcess);
+class FSProcess:public PLibraryProcess { 
+       PCLASSINFO(FSProcess, PLibraryProcess);
 
   public:
        FSProcess();