Ignore:
Timestamp:
Mar 14, 2008 5:56:11 PM (16 years ago)
Author:
bennylp
Message:

More ticket #485: initial test on TURN client/server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/src/pjnath/stun_session.c

    r1862 r1869  
    860860{ 
    861861    pj_stun_msg *response; 
     862    pj_str_t auth_key; 
    862863    pj_status_t status; 
    863864 
     
    866867 
    867868    status = pj_stun_authenticate_request(pkt, pkt_len, msg, sess->cred, 
    868                                           tmp_pool, &response); 
     869                                          tmp_pool, &auth_key, &response); 
    869870    if (status != PJ_SUCCESS && response != NULL) { 
    870871        PJ_LOG(5,(SNAME(sess), "Message authentication failed")); 
    871         send_response(sess, tmp_pool, response, NULL, PJ_FALSE,  
     872        send_response(sess, tmp_pool, response, &auth_key, PJ_FALSE,  
    872873                      src_addr, src_addr_len); 
    873874    } 
Note: See TracChangeset for help on using the changeset viewer.