Changes between Version 129 and Version 130 of FAQ


Ignore:
Timestamp:
Feb 8, 2023 8:46:59 AM (15 months ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v129 v130  
    605605---- 
    606606 
    607 == Security Related Questions == #security 
    608  
    609 === Does PJSIP Support TLS? === #tls 
     607== ~~Security Related Questions~~ (moved) == #security 
     608 
     609**Moved to https://docs.pjsip.org/en/latest/specific-guides/index.html#security** 
     610 
     611=== ~~Does PJSIP Support TLS?~~ (moved) === #tls 
     612 
     613**Moved to https://docs.pjsip.org/en/latest/specific-guides/index.html#security** 
    610614 
    611615Yes, PJSIP supports TLS since long time ago. For a little bit more information, please see [wiki:TLS Configuring and Using PJSIP with TLS] page. 
    612616 
    613 === How Can I Use TLS with PJSIP/pjsua === #pjsua-tls 
    614  
     617=== ~~How Can I Use TLS with PJSIP/pjsua~~ (moved) === #pjsua-tls 
     618 
     619**Moved to https://docs.pjsip.org/en/latest/specific-guides/index.html#security** 
    615620Please see [wiki:TLS Configuring and Using PJSIP with TLS] page. 
    616621 
    617 === Does PJSIP Support Secure Media such as SRTP or ZRTP? === #srtp 
     622=== ~~Does PJSIP Support Secure Media such as SRTP or ZRTP?~~ (moved) === #srtp 
     623**Moved to https://docs.pjsip.org/en/latest/specific-guides/index.html#security** 
    618624 
    619625PJSIP supports SRTP since version 0.9, please see [wiki:SRTP SRTP Support in PJSIP] page for more info. 
     
    630636== DTMF/Tone Related Questions == #dtmf 
    631637 
    632 === Why does PJSIP refuse to send DTMF to remote? === #rfc-2833 
     638=== ~~Why does PJSIP refuse to send DTMF to remote?~~ (moved) === #rfc-2833 
     639**Moved to https://docs.pjsip.org/en/latest/specific-guides/sip/dtmf.html** 
    633640 
    634641PJSIP will only send RFC 2833 DTMF to remote if remote has indicated its capability to accept RFC 2833 events in its SDP. This is done by putting this line in the SDP: 
     
    641648 
    642649 
    643 === How can I send inband DTMF tones? === #inband-dtmf 
     650=== ~~How can I send inband DTMF tones?~~ (moved) === #inband-dtmf 
     651 
     652**Moved to https://docs.pjsip.org/en/latest/specific-guides/sip/dtmf.html** 
    644653 
    645654It's quite easy with [http://www.pjsip.org/pjsip/docs/html/group__PJSUA__LIB.htm PJSUA-LIB] API: 
     
    739748With the above snippet, we just need to call '''call_play_digit()''' every time we need to send inband DTMF digit.  
    740749 
    741 === How Can I Detect Inband Tone === #tone-detect 
     750=== ~~How Can I Detect Inband Tone~~ (moved) === #tone-detect 
     751 
     752**Moved to https://docs.pjsip.org/en/latest/specific-guides/sip/dtmf.html** 
    742753 
    743754Currently PJMEDIA lacks built-in tone detection routine. But if you you have the routine, it shouldn't be straightforward to integrate it to the framework: 
     
    746757 
    747758 
    748 === How Can I Send DTMF INFO Method? === #dtmf-info1 
     759=== ~~How Can I Send DTMF INFO Method?~~ (moved) === #dtmf-info1 
     760 
     761**Moved to https://docs.pjsip.org/en/latest/specific-guides/sip/dtmf.html** 
    749762 
    750763Please see the section on [#info-method sending INFO request with PJSUA-LIB].