Changeset 4714
- Timestamp:
- Jan 23, 2014 8:15:34 AM (11 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_cli.c
r4709 r4714 1712 1712 pj_ansi_snprintf(out_str, 1713 1713 sizeof(out_str), 1714 "Transfer ing current call [%d] %.*s\n",1714 "Transferring current call [%d] %.*s\n", 1715 1715 current_call, 1716 1716 (int)ci.remote_info.slen, -
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_config.c
r4537 r4714 195 195 puts (" --thread-cnt=N Number of worker threads (default:1)"); 196 196 puts (" --duration=SEC Set maximum call duration (default:no limit)"); 197 puts (" --norefersub Suppress event subscription when transfer ing calls");197 puts (" --norefersub Suppress event subscription when transferring calls"); 198 198 puts (" --use-compact-form Minimize SIP message size"); 199 199 puts (" --no-force-lr Allow strict-route to be used (i.e. do not force lr)"); -
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_legacy.c
r4710 r4714 1069 1069 1070 1070 pjsua_call_get_info(current_call, &ci); 1071 printf("Transfer ing current call [%d] %.*s\n", current_call,1071 printf("Transferring current call [%d] %.*s\n", current_call, 1072 1072 (int)ci.remote_info.slen, ci.remote_info.ptr); 1073 1073 -
pjproject/trunk/pjsip-apps/src/py_pjsua/pjsua_app.py
r1438 r4714 412 412 call = g_current_call 413 413 ci = py_pjsua.call_get_info(g_current_call) 414 print "Transfer ing current call ["+ `g_current_call` + "] " + ci.remote_info414 print "Transferring current call ["+ `g_current_call` + "] " + ci.remote_info 415 415 print "Enter sip url : " 416 416 url = sys.stdin.readline() -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r4712 r4714 2572 2572 dest, PJ_EINVAL); 2573 2573 2574 PJ_LOG(4,(THIS_FILE, "Transfer ing call %d to %.*s", call_id,2574 PJ_LOG(4,(THIS_FILE, "Transferring call %d to %.*s", call_id, 2575 2575 (int)dest->slen, dest->ptr)); 2576 2576 pj_log_push_indent(); … … 2653 2653 PJ_EINVAL); 2654 2654 2655 PJ_LOG(4,(THIS_FILE, "Transfer ing call %d replacing with call %d",2655 PJ_LOG(4,(THIS_FILE, "Transferring call %d replacing with call %d", 2656 2656 call_id, dest_call_id)); 2657 2657 pj_log_push_indent();
Note: See TracChangeset
for help on using the changeset viewer.