Ignore:
Timestamp:
Dec 13, 2013 11:44:51 AM (10 years ago)
Author:
nanang
Message:

Re #1519: Misc fixes in pjsua2:

  • Changed AccountConfig::toPj() signature, because a pjsua_acc_config instance should not be copied/assigned to another pjsua_acc_config instance as it contains list.
  • Fixed assertion in Endpoint destructor caused by access to pjlib mutex after pjlib is destroyed.
  • Changed VS2005 sample_debug project to allow debugging C++ code such as pjsua2_demo.cpp.
  • Compile warnings on VS2005.
  • Fixed SWIG python unit test.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/pjsua2/pjsip-apps/src/samples/pjsua2_demo.cpp

    r4673 r4692  
    267267    int ret = 0; 
    268268 
     269    /* Test endpoint instantiation and destruction without libCreate(), 
     270     * libInit() etc. 
     271     */ 
     272    { 
     273        Endpoint ep; 
     274        ep.natDetectType(); 
     275        { 
     276        } 
     277    } 
     278 
    269279    try { 
    270280        mainProg1(); 
Note: See TracChangeset for help on using the changeset viewer.