Ignore:
Timestamp:
Feb 8, 2006 10:44:25 PM (18 years ago)
Author:
bennylp
Message:

Finished invite session UAS implementation

File:
1 edited

Legend:

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

    r141 r160  
    5050 
    5151/** 
     52 * Dialog state. 
     53 */ 
     54enum pjsip_dialog_state 
     55{ 
     56    PJSIP_DIALOG_STATE_NULL, 
     57    PJSIP_DIALOG_STATE_ESTABLISHED, 
     58}; 
     59 
     60/** 
    5261 * This structure describes the dialog structure. 
    5362 */ 
     
    6877 
    6978    /* Dialog's session properties. */ 
    70     pj_bool_t           established;/**< Dialog is established?             */ 
     79    enum pjsip_dialog_state     state;      /**< Dialog state.                      */ 
    7180    pjsip_uri          *target;     /**< Current target.                    */ 
    7281    pjsip_dlg_party     local;      /**< Local party info.                  */ 
Note: See TracChangeset for help on using the changeset viewer.