Changes between Version 14 and Version 15 of TLS


Ignore:
Timestamp:
Jun 12, 2012 3:49:37 PM (12 years ago)
Author:
ismangil
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TLS

    v14 v15  
    55The TLS support in PJSIP requires OpenSSL development kit (headers and libs) to be installed. For Windows platform, please see [wiki:Getting-Started/Installing-OpenSSL-Windows Installing OpenSSL ] page for more info. 
    66 
    7 TLS 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. 
     7TLS support on Symbian is implemented natively using CSecureSocket, hence it doesn't require OpenSSL development kit. Please see '''[wiki:TLS_on_Symbian Configuring TLS on Symbian]''' for the detailed information. 
    88 
    99== Build PJSIP with TLS Support == 
    1010 
    11 Add this in {{{config_site.h}}}: 
    12 {{{ 
    13 #define PJSIP_HAS_TLS_TRANSPORT 1 
    14 }}} 
    15  
    16 And rebuild PJSIP. 
    17  
    18 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], 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}}}: 
     11SIP 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 such as Windows and Symbian, please declare this in your {{{config_site.h}}}: 
    1912{{{ 
    2013#define PJ_HAS_SSL_SOCK 1 
    2114}}} 
    2215 
    23 The {{{PJSIP_HAS_TLS_TRANSPORT}}} default value will be set to {{{PJ_HAS_SSL_SOCK}}} setting. 
     16Note: The {{{PJSIP_HAS_TLS_TRANSPORT}}} default value will be set to {{{PJ_HAS_SSL_SOCK}}} setting. 
    2417 
    2518