Changes between Version 7 and Version 8 of TLS
- Timestamp:
- Oct 28, 2009 6:21:37 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TLS
v7 v8 4 4 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 7 '''Update (for PJSIP 1.5 onward):''' 8 9 TLS support on Symbian is implemented natively using CSecureSocket, hence it doesn't require OpenSSL development kit. 6 10 7 11 == Build PJSIP with TLS Support == … … 13 17 14 18 And rebuild PJSIP. 19 20 '''Update (for PJSIP 1.5 onward):''' 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: 23 {{{ 24 #define PJ_HAS_SSL_SOCK 1 25 }}} 26 as now {{{PJSIP_HAS_TLS_TRANSPORT}}} default value refers to {{{PJ_HAS_SSL_SOCK}}} setting. 27 15 28 16 29 == Running pjsua as TLS Server == … … 32 45 33 46 {{{ 34 $ ./pjsua --use-tls sip:SERVER;transport=tls47 $ ./pjsua --use-tls <sip:SERVER;transport=tls> 35 48 }}} 36 49