Changeset 1284
- Timestamp:
- May 17, 2007 4:18:27 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath/stun_session.c
r1275 r1284 844 844 * is specified in the option. 845 845 */ 846 if ((options & PJ_STUN_NO_AUTHENTICATE) == 0) { 847 status = pj_stun_authenticate_response(pkt, pkt_len, msg, &tdata->auth_key); 846 if ((options & PJ_STUN_NO_AUTHENTICATE) == 0 && tdata->auth_key.slen != 0) 847 { 848 status = pj_stun_authenticate_response(pkt, pkt_len, msg, 849 &tdata->auth_key); 848 850 if (status != PJ_SUCCESS) { 849 851 PJ_LOG(5,(SNAME(sess),
Note: See TracChangeset
for help on using the changeset viewer.