Changeset 6022
- Timestamp:
- Jun 11, 2019 2:03:02 AM (5 years ago)
- Location:
- pjproject/trunk/pjlib/src/pj
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/ssl_sock_imp_common.h
r5938 r6022 94 94 * Secure socket structure definition. 95 95 */ 96 typedefstruct pj_ssl_sock_t96 struct pj_ssl_sock_t 97 97 { 98 98 pj_pool_t *pool; … … 140 140 circ_buf_t circ_buf_output; 141 141 pj_lock_t *circ_buf_output_mutex; 142 } pj_ssl_sock_t;142 }; 143 143 144 144 -
pjproject/trunk/pjlib/src/pj/ssl_sock_ossl.c
r6014 r6022 38 38 (PJ_SSL_SOCK_IMP == PJ_SSL_SOCK_IMP_OPENSSL) 39 39 40 #include "ssl_sock_imp_common.h"41 40 #include "ssl_sock_imp_common.c" 42 41 … … 1577 1576 int i; 1578 1577 1578 /* For now, get_pem has to be PJ_TRUE */ 1579 pj_assert(get_pem); 1580 PJ_UNUSED_ARG(get_pem); 1581 1579 1582 ci->raw_chain.cert_raw = (pj_str_t *)pj_pool_calloc(pool, 1580 1583 sk_X509_num(chain),
Note: See TracChangeset
for help on using the changeset viewer.