Changeset 718
- Timestamp:
- Sep 14, 2006 4:03:42 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsip/sip_errno.h
r515 r718 302 302 /** 303 303 * @hideinitializer 304 * Credential failed to authenticate. 304 * Credential failed to authenticate. For this failure, right credential 305 * for the realm has been found and used to authenticate against the challenge, 306 * but the server has rejected the authorization request with 401/407 response 307 * (either with no stale parameter or with "stale=false" parameter). In most 308 * cases, this indicates that the username/password combination is incorrect. 305 309 */ 306 310 #define PJSIP_EFAILEDCREDENTIAL (PJSIP_ERRNO_START_PJSIP + 100) /* 171100 */ 307 311 /** 308 312 * @hideinitializer 309 * No suitable credential. 313 * No suitable credential is found to authenticate the request against 314 * the received authentication challenge in 401/407 response. This often 315 * is caused by different realm supplied in the credential than the realm 316 * found in the challenge. 310 317 */ 311 318 #define PJSIP_ENOCREDENTIAL (PJSIP_ERRNO_START_PJSIP + 101) /* 171101 */
Note: See TracChangeset
for help on using the changeset viewer.