Changeset 5083
- Timestamp:
- May 5, 2015 6:41:17 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/ssl_sock_ossl.c
r5080 r5083 319 319 SSL_library_init(); 320 320 SSL_load_error_strings(); 321 #if OPENSSL_VERSION_NUMBER < 0x009080ffL 322 /* This is now synonym of SSL_library_init() */ 321 323 OpenSSL_add_all_algorithms(); 324 #endif 322 325 323 326 /* Init available ciphers */ … … 353 356 354 357 for (i = 0; i < n; ++i) { 355 SSL_CIPHER *c;358 const SSL_CIPHER *c; 356 359 c = sk_SSL_CIPHER_value(sk_cipher,i); 357 360 openssl_ciphers[i].id = (pj_ssl_cipher) … … 814 817 for (i = 0; i < ssock->param.ciphers_num; ++i) { 815 818 for (j = 0; j < sk_SSL_CIPHER_num(sk_cipher); ++j) { 816 SSL_CIPHER *c;819 const SSL_CIPHER *c; 817 820 c = sk_SSL_CIPHER_value(sk_cipher, j); 818 821 if (ssock->param.ciphers[i] == (pj_ssl_cipher)
Note: See TracChangeset
for help on using the changeset viewer.