Changeset 4371 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
- Timestamp:
- Feb 26, 2013 12:38:27 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r4356 r4371 3504 3504 } 3505 3505 3506 /* Ticket #1627: Invoke on_call_tsx_state() when call is disconnected. */ 3507 if (inv->state == PJSIP_INV_STATE_DISCONNECTED && 3508 e->type == PJSIP_EVENT_TSX_STATE && 3509 call->inv && 3510 pjsua_var.ua_cfg.cb.on_call_tsx_state) 3511 { 3512 (*pjsua_var.ua_cfg.cb.on_call_tsx_state)(call->index, 3513 e->body.tsx_state.tsx, e); 3514 } 3506 3515 3507 3516 if (pjsua_var.ua_cfg.cb.on_call_state) … … 4415 4424 4416 4425 if (call->inv == NULL) { 4417 /* Shouldn't happen. It happens only when we don't terminate the 4418 * server subscription caused by REFER after the call has been 4419 * transfered (and this call has been disconnected), and we 4420 * receive another REFER for this call. 4421 */ 4426 /* Call has been disconnected. */ 4422 4427 goto on_return; 4423 4428 }
Note: See TracChangeset
for help on using the changeset viewer.