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_dialog.h

    r376 r515  
    3131#include <pj/sock.h> 
    3232#include <pj/assert.h> 
     33 
     34 
     35/** 
     36 * @defgroup PJSIP_DIALOG Base Dialog 
     37 * @ingroup PJSIP_UA 
     38 * @brief The base dialog framework to support dialog usages. 
     39 * @{ 
     40 * 
     41 * The base dialog framework provides management for base dialog 
     42 * properties such as <b>From</b> header, <b>To</b> header, <b>CSeq</b> 
     43 * sequencing, <b>Call-ID</b> header, <b>Contact</b> header management,  
     44 * dialog <b>route-set</b> management, and common <b>authentication</b>.  
     45 * This basic dialog functionality will be shared by all <b>dialog 
     46 * usages</b> of a particular dialog. 
     47 * 
     48 * More detailed information is explained in 
     49 * <A HREF="/docs.htm">PJSIP Developer's Guide</A> 
     50 * PDF document, and readers are encouraged to read the document to 
     51 * get the concept behind dialog, dialog usages, and INVITE sessions. 
     52 * 
     53 * Application MUST initialize the user agent layer module by calling 
     54 * #pjsip_ua_init_module() before using any of the dialog API, and link 
     55 * the application with with <b>pjsip-core</b> library. 
     56 */ 
    3357 
    3458PJ_BEGIN_DECL 
     
    5579enum pjsip_dialog_state 
    5680{ 
     81    /** Dialog is not established. */ 
    5782    PJSIP_DIALOG_STATE_NULL, 
     83 
     84    /** Dialog has been established (probably early) */ 
    5885    PJSIP_DIALOG_STATE_ESTABLISHED, 
    5986}; 
     
    87114    pjsip_endpoint     *endpt;      /**< Endpoint instance.                 */ 
    88115 
    89     /* The dialog set. */ 
     116    /** The dialog set which this dialog belongs (opaque type). */ 
    90117    void               *dlg_set; 
    91118 
Note: See TracChangeset for help on using the changeset viewer.