Changeset 4713 for pjproject/trunk/pjsip/src/pjsip-simple/presence.c
- Timestamp:
- Jan 23, 2014 8:13:11 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-simple/presence.c
r3553 r4713 131 131 * Some static constants. 132 132 */ 133 const pj_str_t STR_EVENT = { "Event", 5 };134 const pj_str_t STR_PRESENCE = { "presence", 8 };135 const pj_str_t STR_APPLICATION = { "application", 11 };136 const pj_str_t STR_PIDF_XML = { "pidf+xml", 8};137 const pj_str_t STR_XPIDF_XML = { "xpidf+xml", 9};138 const pj_str_t STR_APP_PIDF_XML = { "application/pidf+xml", 20 };139 const pj_str_t STR_APP_XPIDF_XML = { "application/xpidf+xml", 21 };133 static const pj_str_t STR_EVENT = { "Event", 5 }; 134 static const pj_str_t STR_PRESENCE = { "presence", 8 }; 135 static const pj_str_t STR_APPLICATION = { "application", 11 }; 136 static const pj_str_t STR_PIDF_XML = { "pidf+xml", 8}; 137 static const pj_str_t STR_XPIDF_XML = { "xpidf+xml", 9}; 138 static const pj_str_t STR_APP_PIDF_XML = { "application/pidf+xml", 20 }; 139 static const pj_str_t STR_APP_XPIDF_XML = { "application/xpidf+xml", 21 }; 140 140 141 141
Note: See TracChangeset
for help on using the changeset viewer.