Changeset 5822


Ignore:
Timestamp:
Jul 15, 2018 2:29:50 PM (6 years ago)
Author:
riza
Message:

Close #2038: Review pjsua app sample about pjsua_call_info usage.

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c

    r5755 r5822  
    196196 
    197197 
    198         PJ_LOG(3,(THIS_FILE, "Call %d is DISCONNECTED [reason=%d (%s)]",  
     198        PJ_LOG(3,(THIS_FILE, "Call %d is DISCONNECTED [reason=%d (%.*s)]",  
    199199                  call_id, 
    200200                  call_info.last_status, 
     201                  (int)call_info.last_status_text.slen, 
    201202                  call_info.last_status_text.ptr)); 
    202203 
     
    254255            } 
    255256 
    256             PJ_LOG(3,(THIS_FILE, "Call %d state changed to %s (%d %.*s)",  
    257                       call_id, call_info.state_text.ptr, 
    258                       code, (int)reason.slen, reason.ptr)); 
     257            PJ_LOG(3,(THIS_FILE, "Call %d state changed to %.*s (%d %.*s)",  
     258                      call_id, (int)call_info.state_text.slen,  
     259                      call_info.state_text.ptr, code,  
     260                      (int)reason.slen, reason.ptr)); 
    259261        } else { 
    260             PJ_LOG(3,(THIS_FILE, "Call %d state changed to %s",  
     262            PJ_LOG(3,(THIS_FILE, "Call %d state changed to %.*s",  
    261263                      call_id, 
     264                      (int)call_info.state_text.slen, 
    262265                      call_info.state_text.ptr)); 
    263266        } 
     
    321324                  "Media count: %d audio & %d video\n" 
    322325                  "%s" 
    323                   "From: %s\n" 
    324                   "To: %s\n" 
     326                  "From: %.*s\n" 
     327                  "To: %.*s\n" 
    325328                  "Press %s to answer or %s to reject call", 
    326329                  acc_id, 
     
    328331                  call_info.rem_vid_cnt, 
    329332                  notif_st, 
     333                  (int)call_info.remote_info.slen, 
    330334                  call_info.remote_info.ptr, 
     335                  (int)call_info.local_info.slen, 
    331336                  call_info.local_info.ptr, 
    332337                  (app_config.use_cli?"ca a":"a"), 
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_acc.c

    r5820 r5822  
    39403940                PJ_LOG(3, (THIS_FILE, "call to %.*s: hangup " 
    39413941                           "triggered by IP change", 
    3942                            call_info.remote_info.slen, 
     3942                           (int)call_info.remote_info.slen, 
    39433943                           call_info.remote_info.ptr)); 
    39443944 
Note: See TracChangeset for help on using the changeset viewer.