Ignore:
Timestamp:
Sep 14, 2006 4:03:42 PM (18 years ago)
Author:
bennylp
Message:

Updated the doxygen comments for PJSIP_EFAILEDCREDENTIAL and PJSIP_ENOCREDENTIAL, since these are queried often.

File:
1 edited

Legend:

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

    r515 r718  
    302302/** 
    303303 * @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. 
    305309 */ 
    306310#define PJSIP_EFAILEDCREDENTIAL (PJSIP_ERRNO_START_PJSIP + 100) /* 171100 */ 
    307311/** 
    308312 * @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. 
    310317 */ 
    311318#define PJSIP_ENOCREDENTIAL     (PJSIP_ERRNO_START_PJSIP + 101) /* 171101 */ 
Note: See TracChangeset for help on using the changeset viewer.