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/samples/simple_pjsua.c

    r2408 r3323  
    118118    /* If argument is specified, it's got to be a valid SIP URL */ 
    119119    if (argc > 1) { 
    120         status = pjsua_verify_sip_url(argv[1]); 
     120        status = pjsua_verify_url(argv[1]); 
    121121        if (status != PJ_SUCCESS) error_exit("Invalid URL in argv", status); 
    122122    } 
Note: See TracChangeset for help on using the changeset viewer.