Changeset 5200 for pjproject/trunk/pjsip/src/pjsip/sip_transport_tls.c
- Timestamp:
- Nov 16, 2015 4:42:42 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_transport_tls.c
r5152 r5200 1567 1567 tls = (struct tls_transport*) pj_ssl_sock_get_user_data(ssock); 1568 1568 1569 if (tls->base.is_shutdown || tls->base.is_destroying) 1570 return PJ_FALSE; 1569 /* If transport is being shutdown/destroyed, proceed as error connect. 1570 * Note that it is important to notify application via on_data_sent() 1571 * as otherwise the transport reference counter may never reach zero 1572 * (see #1898). 1573 */ 1574 if ((tls->base.is_shutdown || tls->base.is_destroying) && 1575 status == PJ_SUCCESS) 1576 { 1577 status = PJ_ECANCELLED; 1578 } 1571 1579 1572 1580 /* Check connect() status */
Note: See TracChangeset
for help on using the changeset viewer.