Changeset 4695
- Timestamp:
- Dec 18, 2013 7:10:12 AM (11 years ago)
- Location:
- pjproject/trunk/pjsip/src/pjsip-ua
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-ua/sip_inv.c
r4653 r4695 3686 3686 */ 3687 3687 status = handle_timer_response(inv, e->body.tsx_state.src.rdata, 3688 PJ_TRUE); 3688 PJ_FALSE); 3689 if (status != PJ_SUCCESS) 3690 goto terminate_session; 3689 3691 3690 3692 } else if (PJSIP_IS_STATUS_IN_CLASS(tsx->status_code, 600)) { -
pjproject/trunk/pjsip/src/pjsip-ua/sip_timer.c
r4537 r4695 724 724 pjsip_msg_find_hdr_by_name(msg, &STR_MIN_SE, NULL); 725 725 if (min_se_hdr == NULL) { 726 /* Response 422 should contain Min-SE header */ 727 return PJ_SUCCESS; 726 /* Response 422 MUST contain Min-SE header */ 727 PJ_LOG(3, (inv->pool->obj_name, 728 "Received 422 (Session Interval Too Small) response " 729 "without Min-SE header!")); 730 731 pjsip_timer_end_session(inv); 732 return PJSIP_EMISSINGHDR; 728 733 } 729 734
Note: See TracChangeset
for help on using the changeset viewer.