Ignore:
Timestamp:
Jun 20, 2008 9:39:02 PM (16 years ago)
Author:
bennylp
Message:

Updated doxygen documentations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/transport_ice.h

    r1989 r2037  
    3131 
    3232/** 
    33  * @defgroup PJMEDIA_TRANSPORT_ICE ICE Capable media transport  
     33 * @defgroup PJMEDIA_TRANSPORT_ICE ICE Media Transport  
    3434 * @ingroup PJMEDIA_TRANSPORT 
    35  * @brief Implementation of media transport with ICE. 
     35 * @brief Interactive Connectivity Establishment (ICE) transport 
    3636 * @{ 
     37 * 
     38 * This describes the implementation of media transport using 
     39 * Interactive Connectivity Establishment (ICE) protocol. 
    3740 */ 
    3841 
     
    5861} pjmedia_ice_cb; 
    5962 
     63 
    6064/** 
    61  * Create the media transport. 
     65 * Create the Interactive Connectivity Establishment (ICE) media transport 
     66 * using the specified configuration. When STUN or TURN (or both) is used, 
     67 * the creation operation will complete asynchronously, when STUN resolution 
     68 * and TURN allocation completes. When the initialization completes, the 
     69 * \a on_ice_complete() complete will be called with \a op parameter equal 
     70 * to PJ_ICE_STRANS_OP_INIT. 
     71 * 
     72 * In addition, this transport will also notify the application about the 
     73 * result of ICE negotiation, also in \a on_ice_complete() callback. In this 
     74 * case the callback will be called with \a op parameter equal to 
     75 * PJ_ICE_STRANS_OP_NEGOTIATION. 
     76 * 
     77 * Other than this, application should use the \ref PJMEDIA_TRANSPORT API 
     78 * to manipulate this media transport. 
    6279 * 
    6380 * @param endpt         The media endpoint. 
     
    6683 * @param comp_cnt      Number of components to be created. 
    6784 * @param cfg           Pointer to configuration settings. 
    68  * @param cb            Optional callbacks. 
     85 * @param cb            Optional structure containing ICE specific callbacks. 
    6986 * @param p_tp          Pointer to receive the media transport instance. 
    7087 * 
Note: See TracChangeset for help on using the changeset viewer.