Ignore:
Timestamp:
Jun 17, 2006 4:08:30 AM (18 years ago)
Author:
bennylp
Message:

Modifications all over the place, but mainly only to update Doxygen documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_ua_layer.h

    r253 r515  
    3030 
    3131/** 
    32  * @defgroup PJSUA SIP User Agent Stack 
     32 * @defgroup PJSIP_UA Base User Agent Layer/Common Dialog Layer 
     33 * @ingroup PJSIP 
     34 * @brief Dialog management. 
     35 * 
     36 * This module provides basic dialog management, which is used by higher 
     37 * layer dialog usages such as INVITE sessions and SIP Event Subscription 
     38 * framework (RFC 3265). Application should link  with <b>pjsip-core</b>  
     39 * library to use this base UA layer. The base UA layer module is initialized 
     40 * with #pjsip_ua_init_module(). 
    3341 */ 
    3442 
    3543/** 
    3644 * @defgroup PJSUA_UA SIP User Agent Module 
    37  * @ingroup PJSUA 
     45 * @ingroup PJSIP_UA 
     46 * @brief Provides dialog management. 
    3847 * @{ 
    39  * \brief 
    40  *   User Agent manages the interactions between application and SIP dialogs. 
     48 * 
     49 * Application MUST initialize the user agent layer module by calling 
     50 * #pjsip_ua_init_module() before using any of the dialog API, and link 
     51 * the application with with <b>pjsip-core</b> library. 
    4152 */ 
    4253 
     
    4455typedef struct pjsip_ua_init_param 
    4556{ 
     57    /** Callback to be called when the UA layer detects that outgoing 
     58     *  dialog has forked. 
     59     */ 
    4660    pjsip_dialog* (*on_dlg_forked)(pjsip_dialog *first_set, pjsip_rx_data *res); 
    4761} pjsip_ua_init_param; 
     
    91105 
    92106 
     107/** 
     108 * @} 
     109 */ 
     110 
     111 
    93112/* 
    94113 * Internal (called by sip_dialog.c). 
     
    101120 
    102121 
    103 /** 
    104  * @} 
    105  */ 
    106  
    107122PJ_END_DECL 
    108123 
Note: See TracChangeset for help on using the changeset viewer.