Changeset 5821 for pjproject/trunk/pjsip/src/pjsua2/siptypes.cpp
- Timestamp:
- Jul 15, 2018 2:09:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua2/siptypes.cpp
r5807 r5821 164 164 ts.privkey_file = str2Pj(this->privKeyFile); 165 165 ts.password = str2Pj(this->password); 166 ts.ca_buf = str2Pj(this->CaBuf); 167 ts.cert_buf = str2Pj(this->certBuf); 168 ts.privkey_buf = str2Pj(this->privKeyBuf); 166 169 ts.method = this->method; 167 170 ts.ciphers_num = (unsigned)this->ciphers.size(); … … 189 192 this->privKeyFile = pj2Str(prm.privkey_file); 190 193 this->password = pj2Str(prm.password); 194 this->CaBuf = pj2Str(prm.ca_buf); 195 this->certBuf = pj2Str(prm.cert_buf); 196 this->privKeyBuf = pj2Str(prm.privkey_buf); 191 197 this->method = (pjsip_ssl_method)prm.method; 192 198 this->proto = prm.proto; … … 211 217 NODE_READ_STRING ( this_node, privKeyFile); 212 218 NODE_READ_STRING ( this_node, password); 219 NODE_READ_STRING ( this_node, CaBuf); 220 NODE_READ_STRING ( this_node, certBuf); 221 NODE_READ_STRING ( this_node, privKeyBuf); 213 222 NODE_READ_NUM_T ( this_node, pjsip_ssl_method, method); 214 223 readIntVector ( this_node, "ciphers", ciphers); … … 230 239 NODE_WRITE_STRING ( this_node, privKeyFile); 231 240 NODE_WRITE_STRING ( this_node, password); 241 NODE_WRITE_STRING ( this_node, CaBuf); 242 NODE_WRITE_STRING ( this_node, certBuf); 243 NODE_WRITE_STRING ( this_node, privKeyBuf); 232 244 NODE_WRITE_NUM_T ( this_node, pjsip_ssl_method, method); 233 245 writeIntVector ( this_node, "ciphers", ciphers);
Note: See TracChangeset
for help on using the changeset viewer.