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/src/pjsua2/siptypes.cpp

    r4884 r4968  
    166166    ts.method           = this->method; 
    167167    ts.ciphers_num      = (unsigned)this->ciphers.size(); 
     168    ts.proto            = this->proto; 
    168169    // The following will only work if sizeof(enum)==sizeof(int) 
    169170    pj_assert(sizeof(ts.ciphers[0]) == sizeof(int)); 
     
    189190    this->password      = pj2Str(prm.password); 
    190191    this->method        = (pjsip_ssl_method)prm.method; 
     192    this->proto         = prm.proto; 
    191193    // The following will only work if sizeof(enum)==sizeof(int) 
    192194    pj_assert(sizeof(prm.ciphers[0]) == sizeof(int)); 
Note: See TracChangeset for help on using the changeset viewer.