Ignore:
Timestamp:
Jun 25, 2009 10:48:08 AM (15 years ago)
Author:
bennylp
Message:

Ticket #796: Handle the case when CANCEL is responded with 200/OK but 487 is not sent

  • merged changes from ticket #503
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.0/pjsip/src/pjsip-ua/sip_inv.c

    r2795 r2798  
    18851885                                               inv->invite_tsx->last_tx, 
    18861886                                               &tdata); 
     1887            if (status != PJ_SUCCESS) 
     1888                return status; 
     1889 
     1890            /* Set timeout for the INVITE transaction, in case UAS is not 
     1891             * able to respond the INVITE with 487 final response. The  
     1892             * timeout value is 64*T1. 
     1893             */ 
     1894            pjsip_tsx_set_timeout(inv->invite_tsx, 64 * pjsip_cfg()->tsx.t1); 
    18871895 
    18881896        } else { 
Note: See TracChangeset for help on using the changeset viewer.