Changes between Version 8 and Version 9 of TLS


Ignore:
Timestamp:
Nov 9, 2009 9:45:49 AM (14 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TLS

    v8 v9  
    55The TLS support in PJSIP requires OpenSSL development kit (headers and libs) to be installed. Please see [http://www.pjsip.org/using.htm Getting Started] page for more info. 
    66 
    7 '''Update (for PJSIP 1.5 onward):''' 
     7'''Update (for PJSIP 1.5 onwards):''' 
    88 
    9 TLS support on Symbian is implemented natively using CSecureSocket, hence it doesn't require OpenSSL development kit. 
     9TLS support on Symbian is implemented natively using CSecureSocket, hence it doesn't require OpenSSL development kit. Please see '''[wiki:TLS_on_Symbian]''' for the detailed information. 
    1010 
    1111== Build PJSIP with TLS Support == 
     
    2020'''Update (for PJSIP 1.5 onward):''' 
    2121 
    22 SIP TLS transport is implemented based on the new PJLIB [http://www.pjsip.org/pjlib/docs/html/group__PJ__SSL__SOCK.htm secure socket abstraction]. Since then the setting needs to be added into {{{config_site.h}}} is only: 
     22SIP TLS transport is implemented based on the new PJLIB [http://www.pjsip.org/pjlib/docs/html/group__PJ__SSL__SOCK.htm secure socket abstraction], and its availability is based on {{{PJ_HAS_SSL_SOCK}}} macro value. For ''autoconf'' build system, the value is automatically detected based on OpenSSL availability. For other platforms, please declare this in your {{{config_site.h}}}: 
    2323{{{ 
    2424#define PJ_HAS_SSL_SOCK 1 
    2525}}} 
    26 as now {{{PJSIP_HAS_TLS_TRANSPORT}}} default value refers to {{{PJ_HAS_SSL_SOCK}}} setting. 
     26 
     27The {{{PJSIP_HAS_TLS_TRANSPORT}}} default value will be set to {{{PJ_HAS_SSL_SOCK}}} setting. 
    2728 
    2829 
     
    5051To see more TLS options, run {{{./pjsua --help}}}. 
    5152 
     53 
     54== Links == 
     55 
     56 - [wiki:TLS_on_Symbian]