Ignore:
Timestamp:
Apr 29, 2007 1:55:56 PM (17 years ago)
Author:
bennylp
Message:

Related to ticket #239: Error parsing quoted parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/symbian/pjsip/src/test-pjsip/test.c

    r127 r1225  
    1919 
    2020 
    21 #include "test.h" 
    2221#include <pjlib.h> 
    2322#include <pjsip.h> 
     23#include "test.h" 
    2424 
    2525#define THIS_FILE   "test.c" 
     
    4545    PJ_CHECK_STACK(); 
    4646 
    47     pjsip_strerror(rc, errbuf, sizeof(errbuf)); 
     47    pj_strerror(rc, errbuf, sizeof(errbuf)); 
    4848    PJ_LOG(3,(THIS_FILE, "%s: [pj_status_t=%d] %s", msg, rc, errbuf)); 
    4949 
     
    9696    pj_dump_config(); 
    9797 
    98     pj_caching_pool_init( &caching_pool, &pj_pool_factory_default_policy, 0 ); 
     98    pj_caching_pool_init( &caching_pool, pj_pool_factory_get_default_policy(), 0 ); 
    9999 
    100100    rc = pjsip_endpt_create(&caching_pool.factory, "endpt", &endpt); 
     
    112112 
    113113    /* Start transaction layer module. */ 
    114     rc = pjsip_tsx_layer_init(endpt); 
     114    rc = pjsip_tsx_layer_init_module(endpt); 
    115115    if (rc != PJ_SUCCESS) { 
    116116        app_perror("   Error initializing transaction module", rc); 
     
    127127 
    128128    //DO_TEST(uri_test()); 
    129     //DO_TEST(msg_test()); 
     129    DO_TEST(msg_test()); 
    130130    //DO_TEST(txdata_test()); 
    131131    //DO_TEST(transport_udp_test()); 
Note: See TracChangeset for help on using the changeset viewer.