Changeset 1101 for pjproject/trunk/pjnath/src/pjnath/stun_transaction.c
- Timestamp:
- Mar 24, 2007 1:00:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath/stun_transaction.c
r1080 r1101 236 236 tsx->complete = PJ_TRUE; 237 237 if (tsx->cb.on_complete) { 238 tsx->cb.on_complete(tsx, PJNATH_ESTUN NOTRESPOND, NULL);238 tsx->cb.on_complete(tsx, PJNATH_ESTUNTIMEDOUT, NULL); 239 239 } 240 240 return; … … 269 269 PJ_LOG(4,(tsx->obj_name, 270 270 "STUN rx_msg() error: not response message")); 271 return PJNATH_E STUNNOTRESPONSE;271 return PJNATH_EINSTUNMSGTYPE; 272 272 } 273 273 … … 301 301 status = PJ_SUCCESS; 302 302 } else { 303 status = PJNATH_ESTUNTSXFAILED; 303 status = PJ_STATUS_FROM_STUN_CODE(err_attr->err_class * 100 + 304 err_attr->number); 304 305 } 305 306
Note: See TracChangeset
for help on using the changeset viewer.