Changeset 4724 for pjproject/trunk/pjsip-apps/src/py_pjsua/pjsua_app.py
- Timestamp:
- Jan 31, 2014 8:52:09 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/py_pjsua/pjsua_app.py
r4714 r4724 158 158 159 159 if status_code/100 == 2: 160 write_log(3, "Call " + `call_id` + " : call transfer ed successfully, disconnecting call")160 write_log(3, "Call " + `call_id` + " : call transferred successfully, disconnecting call") 161 161 status = py_pjsua.call_hangup(call_id, 410, None, None) 162 162 p_cont = 0 … … 424 424 status = py_pjsua.call_xfer(g_current_call, url, msg_data); 425 425 if status != 0: 426 py_pjsua.perror(THIS_FILE, "Error transfer ing call ", status)426 py_pjsua.perror(THIS_FILE, "Error transferring call ", status) 427 427 else: 428 write_log(3, "Call transfer ed to " + url)428 write_log(3, "Call transferred to " + url) 429 429 430 430 def xfer_call_replaces(): … … 459 459 460 460 if dst_call == call: 461 print "Destination call number must not be the same as the call being transfer ed"461 print "Destination call number must not be the same as the call being transferred" 462 462 return 463 463
Note: See TracChangeset
for help on using the changeset viewer.