Changeset 1407
- Timestamp:
- Jul 24, 2007 3:06:40 PM (17 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsip/sip_auth.h
r1376 r1407 355 355 */ 356 356 357 /* Internal function defined in sip_auth_client.c */ 358 void pjsip_auth_create_digest( pj_str_t *result, 359 const pj_str_t *nonce, 360 const pj_str_t *nc, 361 const pj_str_t *cnonce, 362 const pj_str_t *qop, 363 const pj_str_t *uri, 364 const pj_str_t *realm, 365 const pjsip_cred_info *cred_info, 366 const pj_str_t *method); 367 368 357 369 358 370 PJ_END_DECL -
pjproject/trunk/pjsip/src/pjsip/sip_auth_server.c
r1240 r1407 27 27 28 28 29 /* Defined in sip_auth_client.c */30 void pjsip_auth_create_digest( pj_str_t *result,31 const pj_str_t *nonce,32 const pj_str_t *nc,33 const pj_str_t *cnonce,34 const pj_str_t *qop,35 const pj_str_t *uri,36 const pjsip_cred_info *cred_info,37 const pj_str_t *method);38 39 40 29 /* 41 30 * Initialize server authorization session data structure to serve the … … 91 80 &hdr->credential.digest.qop, 92 81 &hdr->credential.digest.uri, 82 &cred_info->realm, 93 83 cred_info, 94 84 method );
Note: See TracChangeset
for help on using the changeset viewer.