Ignore:
Timestamp:
Nov 16, 2015 4:42:42 AM (9 years ago)
Author:
nanang
Message:

Fix #1898: If transport is being shutdown/destroyed and connected event comes, proceed as error/cancelled connect.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_transport_tcp.c

    r5170 r5200  
    14711471    tcp->has_pending_connect = PJ_FALSE; 
    14721472 
    1473     if (tcp->base.is_shutdown || tcp->base.is_destroying)  
    1474         return PJ_FALSE; 
     1473    /* If transport is being shutdown/destroyed, proceed as error connect. 
     1474     * Note that it is important to notify application via on_data_sent() 
     1475     * as otherwise the transport reference counter may never reach zero 
     1476     * (see #1898). 
     1477     */ 
     1478    if ((tcp->base.is_shutdown || tcp->base.is_destroying) && 
     1479        status == PJ_SUCCESS) 
     1480    { 
     1481        status = PJ_ECANCELLED; 
     1482    } 
    14751483 
    14761484    /* Check connect() status */ 
Note: See TracChangeset for help on using the changeset viewer.