Ignore:
Timestamp:
Feb 9, 2006 9:30:09 AM (18 years ago)
Author:
bennylp
Message:

Setting svn:eol-style attribute

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua/pjsua.h

    r162 r167  
    129129 
    130130/***************************************************************************** 
    131  * PJSUA API. 
     131 * PJSUA API (defined in pjsua_core.c). 
    132132 */ 
    133133 
     
    172172 
    173173 
     174/***************************************************************************** 
     175 * PJSUA Invite session API (defined in pjsua_inv.c). 
     176 */ 
     177 
    174178/** 
    175179 * Make outgoing call. 
     
    179183 
    180184 
    181 /***************************************************************************** 
    182  * PJSUA Client Registration API. 
     185/** 
     186 * Handle incoming invite request. 
     187 */ 
     188pj_bool_t pjsua_inv_on_incoming(pjsip_rx_data *rdata); 
     189 
     190 
     191/** 
     192 * Callback to be called by session when invite session's state has changed. 
     193 */ 
     194void pjsua_inv_on_state_changed(pjsip_inv_session *inv, pjsip_event *e); 
     195 
     196 
     197/** 
     198 * Callback to be called by session when outgoing dialog has forked. 
     199 * This function will create a forked dialog. 
     200 */ 
     201void pjsua_inv_on_new_session(pjsip_inv_session *inv, pjsip_event *e); 
     202 
     203 
     204/** 
     205 * Callback to be called when SDP offer/answer negotiation has just completed 
     206 * in the session. This function will start/update media if negotiation 
     207 * has succeeded. 
     208 */ 
     209void pjsua_inv_on_media_update(pjsip_inv_session *inv, pj_status_t status); 
     210 
     211 
     212/***************************************************************************** 
     213 * PJSUA Client Registration API (defined in pjsua_reg.c). 
    183214 */ 
    184215 
     
    199230/***************************************************************************** 
    200231 * User Interface API. 
     232 * 
    201233 * The UI API specifies functions that will be called by pjsua upon 
    202234 * occurence of various events. 
Note: See TracChangeset for help on using the changeset viewer.