Ignore:
Timestamp:
Dec 18, 2014 4:40:35 AM (9 years ago)
Author:
riza
Message:

Re #1806: Implement SSL/TLS setting to set protocol operation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua2/siptypes.hpp

    r4918 r4968  
    146146 
    147147    /** 
    148      * TLS protocol method from pjsip_ssl_method. 
     148     * TLS protocol method from #pjsip_ssl_method. In the future, this field 
     149     * might be deprecated in favor of <b>proto</b> field. For now, this field  
     150     * is only applicable only when <b>proto</b> field is set to zero. 
    149151     * 
    150152     * Default is PJSIP_SSL_UNSPECIFIED_METHOD (0), which in turn will 
    151      * use PJSIP_SSL_DEFAULT_METHOD, which default value is 
    152      * PJSIP_TLSV1_METHOD. 
     153     * use PJSIP_SSL_DEFAULT_METHOD, which default value is PJSIP_TLSV1_METHOD. 
    153154     */ 
    154155    pjsip_ssl_method    method; 
     156 
     157    /** 
     158     * TLS protocol type from #pj_ssl_sock_proto. Use this field to enable  
     159     * specific protocol type. Use bitwise OR operation to combine the protocol  
     160     * type. 
     161     * 
     162     * Default is PJSIP_SSL_DEFAULT_PROTO. 
     163     */ 
     164    unsigned            proto; 
    155165 
    156166    /** 
Note: See TracChangeset for help on using the changeset viewer.