Ignore:
Timestamp:
Sep 9, 2014 8:31:37 AM (10 years ago)
Author:
ming
Message:

Fixed #1785: Add support for sending initial INVITE/re-INVITE/UPDATE without SDP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h

    r4889 r4920  
    871871    /** 
    872872     * Notify application when call has received new offer from remote 
    873      * (i.e. re-INVITE/UPDATE with SDP is received). Application can 
     873     * (i.e. re-INVITE/UPDATE with SDP is received, or from the 
     874     * INVITE response in the case that the initial outgoing INVITE 
     875     * has no SDP). Application can 
    874876     * decide to accept/reject the offer by setting the code (default 
    875877     * is 200). If the offer is accepted, application can update the  
     
    41064108     * for #pjsua_call_make_call(). 
    41074109     */ 
    4108     PJSUA_CALL_INCLUDE_DISABLED_MEDIA = 4 
     4110    PJSUA_CALL_INCLUDE_DISABLED_MEDIA = 4, 
     4111     
     4112    /** 
     4113     * Do not send SDP when sending INVITE or UPDATE. This flag is only valid 
     4114     * for #pjsua_call_make_call(), #pjsua_call_reinvite()/reinvite2(), or 
     4115     * #pjsua_call_update()/update2(). For re-invite/update, specifying 
     4116     * PJSUA_CALL_UNHOLD will take precedence over this flag. 
     4117     */ 
     4118    PJSUA_CALL_NO_SDP_OFFER = 8 
    41094119 
    41104120} pjsua_call_flag; 
Note: See TracChangeset for help on using the changeset viewer.