Changes between Version 8 and Version 9 of TLS
- Timestamp:
- Nov 9, 2009 9:45:49 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TLS
v8 v9 5 5 The 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. 6 6 7 '''Update (for PJSIP 1.5 onward ):'''7 '''Update (for PJSIP 1.5 onwards):''' 8 8 9 TLS support on Symbian is implemented natively using CSecureSocket, hence it doesn't require OpenSSL development kit. 9 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. 10 10 11 11 == Build PJSIP with TLS Support == … … 20 20 '''Update (for PJSIP 1.5 onward):''' 21 21 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: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], 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}}}: 23 23 {{{ 24 24 #define PJ_HAS_SSL_SOCK 1 25 25 }}} 26 as now {{{PJSIP_HAS_TLS_TRANSPORT}}} default value refers to {{{PJ_HAS_SSL_SOCK}}} setting. 26 27 The {{{PJSIP_HAS_TLS_TRANSPORT}}} default value will be set to {{{PJ_HAS_SSL_SOCK}}} setting. 27 28 28 29 … … 50 51 To see more TLS options, run {{{./pjsua --help}}}. 51 52 53 54 == Links == 55 56 - [wiki:TLS_on_Symbian]