Ignore:
Timestamp:
Feb 19, 2006 1:38:06 AM (18 years ago)
Author:
bennylp
Message:

Initial SIMPLE implementation

File:
1 edited

Legend:

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

    r171 r197  
    9393 
    9494/** 
     95 * Forward declaration for message body (sip_msg.h). 
     96 */ 
     97typedef struct pjsip_msg_body pjsip_msg_body; 
     98 
     99/** 
    95100 * Forward declaration for header field (sip_msg.h). 
    96101 */ 
     
    144149typedef enum pjsip_role_e 
    145150{ 
    146     PJSIP_ROLE_UAC,     /**< Transaction role is UAC. */ 
    147     PJSIP_ROLE_UAS,     /**< Transaction role is UAS. */ 
     151    PJSIP_ROLE_UAC,     /**< Role is UAC. */ 
     152    PJSIP_ROLE_UAS,     /**< Role is UAS. */ 
     153 
     154    /* Alias: */ 
     155 
     156    PJSIP_UAC_ROLE = PJSIP_ROLE_UAC,    /**< Role is UAC. */ 
     157    PJSIP_UAS_ROLE = PJSIP_ROLE_UAS,    /**< Role is UAS. */ 
     158 
    148159} pjsip_role_e; 
    149160 
Note: See TracChangeset for help on using the changeset viewer.