Ignore:
Timestamp:
Jul 19, 2011 3:42:28 AM (13 years ago)
Author:
nanang
Message:

Re #1326: Initial code integration from branch 2.0-dev to trunk as "2.0-pre-alpha-svn".

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk

  • pjproject/trunk/pjmedia/include/pjmedia/transport_ice.h

    r3553 r3664  
    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.