Ignore:
Timestamp:
Feb 9, 2006 2:01:40 PM (18 years ago)
Author:
bennylp
Message:

Updated with new jitter buffer, and statistics in pjsua

File:
1 edited

Legend:

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

    r167 r169  
    3737 
    3838PJ_BEGIN_DECL 
     39 
     40 
     41/**  
     42 * Structure to be attached to all dialog.  
     43 * Given a dialog "dlg", application can retrieve this structure 
     44 * by accessing dlg->mod_data[pjsua.mod.id]. 
     45 */ 
     46struct pjsua_inv_data 
     47{ 
     48    PJ_DECL_LIST_MEMBER(struct pjsua_inv_data); 
     49 
     50    pjsip_inv_session   *inv; 
     51    pjmedia_session     *session; 
     52}; 
     53 
     54 
    3955 
    4056/* PJSUA application variables. */ 
     
    110126    char            *log_filename;  /**< Log filename.                  */ 
    111127 
     128    /* List of invite sessions: */ 
     129 
     130    struct pjsua_inv_data inv_list; 
    112131}; 
    113132 
     
    116135extern struct pjsua pjsua; 
    117136 
    118  
    119 /**  
    120  * Structure to be attached to all dialog.  
    121  * Given a dialog "dlg", application can retrieve this structure 
    122  * by accessing dlg->mod_data[pjsua.mod.id]. 
    123  */ 
    124 struct pjsua_inv_data 
    125 { 
    126     pjmedia_session *session; 
    127 }; 
    128137 
    129138 
Note: See TracChangeset for help on using the changeset viewer.