Changeset 1266 for pjproject/trunk/pjsip/src/pjsip-simple/presence.c
- Timestamp:
- May 11, 2007 3:14:34 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-simple/presence.c
r1241 r1266 58 58 * Presence message body type. 59 59 */ 60 typedef enum content_type 60 typedef enum content_type_e 61 61 { 62 62 CONTENT_TYPE_NONE, 63 63 CONTENT_TYPE_PIDF, 64 64 CONTENT_TYPE_XPIDF, 65 } content_type ;65 } content_type_e; 66 66 67 67 /* … … 72 72 pjsip_evsub *sub; /**< Event subscribtion record. */ 73 73 pjsip_dialog *dlg; /**< The dialog. */ 74 content_type content_type; /**< Content-Type. */74 content_type_e content_type; /**< Content-Type. */ 75 75 pjsip_pres_status status; /**< Presence status. */ 76 76 pjsip_pres_status tmp_status; /**< Temp, before NOTIFY is answred.*/ … … 227 227 pjsip_expires_hdr *expires_hdr; 228 228 unsigned expires; 229 content_type content_type = CONTENT_TYPE_NONE;229 content_type_e content_type = CONTENT_TYPE_NONE; 230 230 pjsip_evsub *sub; 231 231 pjsip_pres *pres;
Note: See TracChangeset
for help on using the changeset viewer.