Ignore:
Timestamp:
Nov 29, 2013 12:33:05 AM (10 years ago)
Author:
bennylp
Message:

Fixed #1714: Workaround for stuck in TCP/TLS shutdown when another thread is destroying the transport

File:
1 edited

Legend:

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

    r4537 r4661  
    177177        tcp->close_reason = status; 
    178178 
    179     if (tcp->base.is_shutdown) 
     179    if (tcp->base.is_shutdown || tcp->base.is_destroying) 
    180180        return; 
    181181 
     
    195195        (*state_cb)(&tcp->base, PJSIP_TP_STATE_DISCONNECTED, &state_info); 
    196196    } 
     197 
     198    /* check again */ 
     199    if (tcp->base.is_shutdown || tcp->base.is_destroying) 
     200        return; 
    197201 
    198202    /* We can not destroy the transport since high level objects may 
Note: See TracChangeset for help on using the changeset viewer.