Changeset 1407


Ignore:
Timestamp:
Jul 24, 2007 3:06:40 PM (17 years ago)
Author:
bennylp
Message:

Fixed ticket #356: Prototype and definition mismatch causing crash in sip_auth_server.c (thanks Truong Thanh Quang)

Location:
pjproject/trunk/pjsip
Files:
2 edited

Legend:

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

    r1376 r1407  
    355355 */ 
    356356 
     357/* Internal function defined in sip_auth_client.c */ 
     358void 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 
    357369 
    358370PJ_END_DECL 
  • pjproject/trunk/pjsip/src/pjsip/sip_auth_server.c

    r1240 r1407  
    2727 
    2828 
    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  
    4029/* 
    4130 * Initialize server authorization session data structure to serve the  
     
    9180                                 &hdr->credential.digest.qop, 
    9281                                 &hdr->credential.digest.uri, 
     82                                 &cred_info->realm, 
    9383                                 cred_info,  
    9484                                 method ); 
Note: See TracChangeset for help on using the changeset viewer.