Changeset 515 for pjproject/trunk/pjsip/include/pjsip/sip_auth_parser.h
- Timestamp:
- Jun 17, 2006 4:08:30 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsip/sip_auth_parser.h
r65 r515 30 30 31 31 /** 32 * @defgroup PJSIP_AUTH_PARSER_MODULE Authorization Parser Module33 * @ingroup PJSIP_AUTH34 * @{35 */36 37 /**38 32 * Initialize and register authorization parser module. 39 33 * This will register parser handler for various Authorization related headers 40 34 * such as Authorization, WWW-Authenticate, Proxy-Authorizization, and 41 35 * Proxy-Authenticate headers. 36 * 37 * This function is called automatically by the main SIP parser. 42 38 * 43 39 * @return PJ_SUCCESS or the appropriate status code. … … 51 47 52 48 53 extern const pj_str_t pjsip_USERNAME_STR,54 pjsip_REALM_STR,55 pjsip_NONCE_STR,56 pjsip_URI_STR,57 pjsip_RESPONSE_STR,58 pjsip_ALGORITHM_STR,59 pjsip_DOMAIN_STR,60 pjsip_STALE_STR,61 pjsip_QOP_STR,62 pjsip_CNONCE_STR,63 pjsip_OPAQUE_STR,64 pjsip_NC_STR,65 pjsip_TRUE_STR,66 pjsip_FALSE_STR,67 pjsip_DIGEST_STR,68 pjsip_PGP_STR,69 pjsip_MD5_STR,70 pjsip_AUTH_STR;71 /*72 extern const pj_str_t pjsip_QUOTED_TRUE_STR,73 pjsip_QUOTED_FALSE_STR,74 pjsip_QUOTED_DIGEST_STR,75 pjsip_QUOTED_PGP_STR,76 pjsip_QUOTED_MD5_STR,77 pjsip_QUOTED_AUTH_STR;78 */79 49 80 /** 81 * @} 82 */ 50 extern const pj_str_t pjsip_USERNAME_STR, /**< "username" string const. */ 51 pjsip_REALM_STR, /**< "realm" string const. */ 52 pjsip_NONCE_STR, /**< "nonce" string const. */ 53 pjsip_URI_STR, /**< "uri" string const. */ 54 pjsip_RESPONSE_STR, /**< "response" string const. */ 55 pjsip_ALGORITHM_STR,/**< "algorithm" string const. */ 56 pjsip_DOMAIN_STR, /**< "domain" string const. */ 57 pjsip_STALE_STR, /**< "stale" string const. */ 58 pjsip_QOP_STR, /**< "qop" string const. */ 59 pjsip_CNONCE_STR, /**< "cnonce" string const. */ 60 pjsip_OPAQUE_STR, /**< "opaque" string const. */ 61 pjsip_NC_STR, /**< "nc" string const. */ 62 pjsip_TRUE_STR, /**< "true" string const. */ 63 pjsip_FALSE_STR, /**< "false" string const. */ 64 pjsip_DIGEST_STR, /**< "digest" string const. */ 65 pjsip_PGP_STR, /**< "pgp" string const. */ 66 pjsip_MD5_STR, /**< "md5" string const. */ 67 pjsip_AUTH_STR; /**< "auth" string const. */ 83 68 84 69 PJ_END_DECL
Note: See TracChangeset
for help on using the changeset viewer.