Changes between Version 7 and Version 8 of TLS


Ignore:
Timestamp:
Oct 28, 2009 6:21:37 AM (15 years ago)
Author:
nanang
Comment:

Few updates regarding ticket #957 about new secure socket abstraction and SIP TLS transport rewrite.

Legend:

Unmodified
Added
Removed
Modified
  • TLS

    v7 v8  
    44 
    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. 
     6 
     7'''Update (for PJSIP 1.5 onward):''' 
     8 
     9TLS support on Symbian is implemented natively using CSecureSocket, hence it doesn't require OpenSSL development kit. 
    610 
    711== Build PJSIP with TLS Support == 
     
    1317 
    1418And rebuild PJSIP. 
     19 
     20'''Update (for PJSIP 1.5 onward):''' 
     21 
     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]. Since then the setting needs to be added into {{{config_site.h}}} is only: 
     23{{{ 
     24#define PJ_HAS_SSL_SOCK 1 
     25}}} 
     26as now {{{PJSIP_HAS_TLS_TRANSPORT}}} default value refers to {{{PJ_HAS_SSL_SOCK}}} setting. 
     27 
    1528 
    1629== Running pjsua as TLS Server == 
     
    3245 
    3346{{{ 
    34 $ ./pjsua --use-tls sip:SERVER;transport=tls 
     47$ ./pjsua --use-tls <sip:SERVER;transport=tls> 
    3548}}} 
    3649