Changeset 1562


Ignore:
Timestamp:
Nov 8, 2007 9:39:06 AM (16 years ago)
Author:
bennylp
Message:

In pjsua-lib, treat incoming SDP with a=sendonly as hold request, and respond with a=inactive

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r1561 r1562  
    24492449 
    24502450    }  
    2451     else if (pjmedia_sdp_media_find_attr2(offer->media[0], "inactive", NULL)) 
     2451    else if (pjmedia_sdp_media_find_attr2(offer->media[0], "inactive", NULL) || 
     2452             pjmedia_sdp_media_find_attr2(offer->media[0], "sendonly", NULL)) 
    24522453    { 
    24532454        is_remote_active = PJ_FALSE; 
Note: See TracChangeset for help on using the changeset viewer.