Ignore:
Timestamp:
Aug 6, 2006 11:07:25 PM (18 years ago)
Author:
bennylp
Message:

Fixed assertion error if ACK is received before INVITE transaction sends final response (malicious?). Also fixed misc warnings, and stress-tested on Quad Xeon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_transaction.c

    r635 r657  
    10101010    pjsip_tsx_state_e prev_state = tsx->state; 
    10111011 
     1012    /* New state must be greater than previous state */ 
     1013    pj_assert(state >= tsx->state); 
     1014 
    10121015    PJ_LOG(5, (tsx->obj_name, "State changed from %s to %s, event=%s", 
    10131016               state_str[tsx->state], state_str[state],  
Note: See TracChangeset for help on using the changeset viewer.