Ignore:
Timestamp:
Oct 3, 2007 6:28:49 PM (17 years ago)
Author:
bennylp
Message:

Ticket 5: Support for SIP UPDATE (RFC 3311) and fix the offer/answer negotiation

File:
1 edited

Legend:

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

    r1463 r1469  
    196196 
    197197 
     198#define LATE_SDP    0 
     199 
    198200/* 
    199201 * Make outgoing call to the specified URI using the specified account. 
     
    313315 
    314316    /* Create SDP offer */ 
     317#if LATE_SDP 
     318    offer = NULL; 
     319#else 
    315320    status = pjsua_media_channel_create_sdp(call->index, dlg->pool, &offer); 
    316321    if (status != PJ_SUCCESS) { 
     
    318323        goto on_error; 
    319324    } 
     325#endif 
    320326 
    321327    /* Create the INVITE session: */ 
Note: See TracChangeset for help on using the changeset viewer.