Ignore:
Timestamp:
Apr 22, 2009 5:20:24 PM (15 years ago)
Author:
bennylp
Message:

Part of ticket #780: enhance the PJNATH doxygen documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/include/pjnath/ice_session.h

    r2394 r2642  
    3131#include <pj/timer.h> 
    3232 
    33 /** 
    34  * @defgroup PJNATH_ICE Interactive Connectivity Establishment (ICE) 
    35  * @brief Interactive Connectivity Establishment (ICE) 
    36  */ 
    37  
    38  
    3933PJ_BEGIN_DECL 
    4034 
    4135 
    4236/** 
    43  * @defgroup PJNATH_ICE_SESSION ICE Session 
    44  * @brief Transport Independent ICE Session 
    45  * @ingroup PJNATH_ICE 
     37 * @addtogroup PJNATH_ICE_SESSION 
    4638 * @{ 
    4739 * 
     
    205197typedef struct pj_ice_msg_data 
    206198{ 
     199    /** Transport ID for this message */ 
    207200    unsigned    transport_id; 
     201 
     202    /** Flag to indicate whether data.req contains data */ 
    208203    pj_bool_t   has_req_data; 
    209204 
     205    /** The data */ 
    210206    union data { 
     207        /** Request data */ 
    211208        struct request_data { 
    212             pj_ice_sess             *ice; 
    213             pj_ice_sess_checklist   *clist; 
    214             unsigned                 ckid; 
     209            pj_ice_sess             *ice;   /**< ICE session    */ 
     210            pj_ice_sess_checklist   *clist; /**< Checklist      */ 
     211            unsigned                 ckid;  /**< Check ID       */ 
    215212        } req; 
    216213    } data; 
     214 
    217215} pj_ice_msg_data; 
    218216 
     
    540538typedef struct pj_ice_rx_check 
    541539{ 
    542     PJ_DECL_LIST_MEMBER(struct pj_ice_rx_check); 
     540    PJ_DECL_LIST_MEMBER(struct pj_ice_rx_check); /**< Standard list     */ 
    543541 
    544542    unsigned             comp_id;       /**< Component ID.              */ 
     
    601599    pj_ice_sess_cand     rcand[PJ_ICE_MAX_CAND];    /**< Array of cand.     */ 
    602600 
    603     /* Array of transport datas */ 
     601    /** Array of transport datas */ 
    604602    pj_ice_msg_data      tp_data[4]; 
    605603 
     
    613611    pj_ice_sess_checklist valid_list;               /**< Valid list.        */ 
    614612     
    615     /* Temporary buffer for misc stuffs to avoid using stack too much */ 
     613    /** Temporary buffer for misc stuffs to avoid using stack too much */ 
    616614    union { 
    617615        char txt[128]; 
Note: See TracChangeset for help on using the changeset viewer.