Changeset 1452


Ignore:
Timestamp:
Sep 25, 2007 8:48:49 PM (17 years ago)
Author:
bennylp
Message:

Exported some private pjsua_call.c functions related to call quality statistics

Location:
pjproject/trunk/pjsip
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua_internal.h

    r1424 r1452  
    427427 
    428428 
     429pj_status_t acquire_call(const char *title, 
     430                         pjsua_call_id call_id, 
     431                         pjsua_call **p_call, 
     432                         pjsip_dialog **p_dlg); 
     433const char *good_number(char *buf, pj_int32_t val); 
     434void print_call(const char *title, 
     435                int call_id, 
     436                char *buf, pj_size_t size); 
     437 
    429438 
    430439PJ_END_DECL 
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r1417 r1452  
    779779 
    780780/* Acquire lock to the specified call_id */ 
    781 static pj_status_t acquire_call(const char *title, 
     781pj_status_t acquire_call(const char *title, 
    782782                                pjsua_call_id call_id, 
    783783                                pjsua_call **p_call, 
     
    16041604 
    16051605 
    1606 static const char *good_number(char *buf, pj_int32_t val) 
     1606const char *good_number(char *buf, pj_int32_t val) 
    16071607{ 
    16081608    if (val < 1000) { 
     
    18181818 
    18191819/* Print call info */ 
    1820 static void print_call(const char *title, 
     1820void print_call(const char *title, 
    18211821                       int call_id,  
    18221822                       char *buf, pj_size_t size) 
Note: See TracChangeset for help on using the changeset viewer.