Ignore:
Timestamp:
Feb 23, 2006 1:49:28 PM (18 years ago)
Author:
bennylp
Message:

Added support for NULL frame in rtp stream, fixed bugs here and there in INVITE (e.g. dont send SDP on 180), and set version to 0.5.1.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip-ua/sip_inv.h

    r212 r223  
    349349                                       pjsip_tx_data **p_tdata ); 
    350350 
     351 
     352/** 
     353 * Create the initial response message for the incoming INVITE request in 
     354 * rdata with  status code st_code and optional status text st_text. Use 
     355 * #pjsip_answer() to create subsequent response message. 
     356 */ 
     357PJ_DECL(pj_status_t) pjsip_inv_initial_answer(  pjsip_inv_session *inv, 
     358                                                pjsip_rx_data *rdata, 
     359                                                int st_code, 
     360                                                const pj_str_t *st_text, 
     361                                                const pjmedia_sdp_session *sdp, 
     362                                                pjsip_tx_data **p_tdata); 
    351363 
    352364/** 
Note: See TracChangeset for help on using the changeset viewer.