Changeset 2803 for pjproject/branches/1.0/pjsip/src/pjsip-ua/sip_inv.c
- Timestamp:
- Jun 25, 2009 12:02:46 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.0/pjsip/src/pjsip-ua/sip_inv.c
r2801 r2803 2479 2479 /* Remove the message body */ 2480 2480 tdata->msg->body = NULL; 2481 pjsip_dlg_send_response(inv->dlg, invite_tsx, tdata); 2481 if (inv->options & PJSIP_INV_REQUIRE_100REL) { 2482 status = pjsip_100rel_tx_response(inv, tdata); 2483 } else { 2484 status = pjsip_dlg_send_response(inv->dlg, invite_tsx, 2485 tdata); 2486 } 2482 2487 } 2483 2488 }
Note: See TracChangeset
for help on using the changeset viewer.