Ignore:
Timestamp:
Apr 11, 2011 5:27:14 PM (13 years ago)
Author:
bennylp
Message:

Re #1185: fixed ICE media transport to work with video in pjsua-lib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/2.0-dev/pjmedia/include/pjmedia/transport_ice.h

    r3327 r3520  
    182182                                         pjmedia_transport **p_tp); 
    183183 
     184/** 
     185 * The same as #pjmedia_ice_create2() with additional \a user_data param. 
     186 * 
     187 * @param endpt         The media endpoint. 
     188 * @param name          Optional name to identify this ICE media transport 
     189 *                      for logging purposes. 
     190 * @param comp_cnt      Number of components to be created. 
     191 * @param cfg           Pointer to configuration settings. 
     192 * @param cb            Optional structure containing ICE specific callbacks. 
     193 * @param options       Options, see #pjmedia_transport_ice_options. 
     194 * @param user_data     User data to be attached to the transport. 
     195 * @param p_tp          Pointer to receive the media transport instance. 
     196 * 
     197 * @return              PJ_SUCCESS on success, or the appropriate error code. 
     198 */ 
     199PJ_DECL(pj_status_t) pjmedia_ice_create3(pjmedia_endpt *endpt, 
     200                                         const char *name, 
     201                                         unsigned comp_cnt, 
     202                                         const pj_ice_strans_cfg *cfg, 
     203                                         const pjmedia_ice_cb *cb, 
     204                                         unsigned options, 
     205                                         void *user_data, 
     206                                         pjmedia_transport **p_tp); 
     207 
    184208PJ_END_DECL 
    185209 
Note: See TracChangeset for help on using the changeset viewer.