Ignore:
Timestamp:
Sep 28, 2010 7:43:18 AM (14 years ago)
Author:
bennylp
Message:

Closed #1139 (Support for tel: URI in PJSUA-LIB):

  • added new PJSUA API: pjsua_verify_url() which can be used for tel: URI
  • modified and tested according to spec
  • added new PJSIP error code, PJSIP_ENOROUTESET, to indicate that route set is needed to send to tel: URI
  • added couple of unit tests (we can't cover the whole tel: URI scenario yet)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/symbian_ua_gui/src/symbian_ua.cpp

    r3106 r3323  
    483483int symbian_ua_makecall(const char* dest_url) 
    484484{ 
    485     if (pjsua_verify_sip_url(dest_url) == PJ_SUCCESS) { 
     485    if (pjsua_verify_url(dest_url) == PJ_SUCCESS) { 
    486486            pj_str_t dst = pj_str((char*)dest_url); 
    487487            pjsua_call_make_call(g_acc_id, &dst, 0, NULL, 
Note: See TracChangeset for help on using the changeset viewer.