Changeset 1030 for pjproject/trunk/pjlib-util/include/pjlib-util/errno.h
- Timestamp:
- Mar 1, 2007 11:39:08 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib-util/include/pjlib-util/errno.h
r1002 r1030 302 302 /** 303 303 * @hideinitializer 304 * Invalid STUN MESSAGE-INTEGRITY attribute position in message. 305 * STUN MESSAGE-INTEGRITY must be put last in the message, or before 306 * FINGERPRINT attribute. 307 */ 308 #define PJLIB_UTIL_ESTUNMSGINT (PJLIB_UTIL_ERRNO_START+117)/* 320117 */ 304 * Found non-FINGERPRINT attribute after MESSAGE-INTEGRITY. This is not 305 * valid since MESSAGE-INTEGRITY MUST be the last attribute or the 306 * attribute right before FINGERPRINT before the message. 307 */ 308 #define PJLIB_UTIL_ESTUNMSGINTPOS (PJLIB_UTIL_ERRNO_START+118)/* 320118 */ 309 /** 310 * @hideinitializer 311 * Found attribute after FINGERPRINT. This is not valid since FINGERPRINT 312 * MUST be the last attribute in the message. 313 */ 314 #define PJLIB_UTIL_ESTUNFINGERPOS (PJLIB_UTIL_ERRNO_START+119)/* 320119 */ 309 315 /** 310 316 * @hideinitializer … … 313 319 * present), the USERNAME attribute must be present in the message. 314 320 */ 315 #define PJLIB_UTIL_ESTUNNOUSERNAME (PJLIB_UTIL_ERRNO_START+1 18)/* 320118*/321 #define PJLIB_UTIL_ESTUNNOUSERNAME (PJLIB_UTIL_ERRNO_START+120)/* 320120 */ 316 322 317 323
Note: See TracChangeset
for help on using the changeset viewer.