Changeset 1414


Ignore:
Timestamp:
Aug 9, 2007 4:24:50 AM (17 years ago)
Author:
bennylp
Message:

Added checking for STUN message type when performing cached STUN response lookup (for clients who are not able to generate unique transaction ID) [thanks Scott Lu]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/src/pjnath/stun_session.c

    r1410 r1414  
    892892    while (t != &sess->cached_response_list) { 
    893893        if (t->msg_magic == msg->hdr.magic && 
     894            t->msg->hdr.type == msg->hdr.type && 
    894895            pj_memcmp(t->msg_key, msg->hdr.tsx_id,  
    895896                      sizeof(msg->hdr.tsx_id))==0) 
Note: See TracChangeset for help on using the changeset viewer.