- Timestamp:
- Nov 2, 2011 7:53:38 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x/pjsip/src/pjsip/sip_transaction.c
r3755 r3881 3198 3198 { 3199 3199 pj_assert(tsx->state == PJSIP_TSX_STATE_TERMINATED); 3200 pj_assert(event->type == PJSIP_EVENT_TIMER); 3200 3201 /* Ignore events other than timer. This used to be an assertion but 3202 * events may genuinely arrive at this state. 3203 */ 3204 if (event->type != PJSIP_EVENT_TIMER) { 3205 return PJ_EIGNORED; 3206 } 3201 3207 3202 3208 /* Destroy this transaction */
Note: See TracChangeset
for help on using the changeset viewer.