Ignore:
Timestamp:
Mar 23, 2007 4:34:20 PM (17 years ago)
Author:
bennylp
Message:

ICE (work in progress): integration with PJSUA

File:
1 edited

Legend:

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

    r1097 r1098  
    889889{ 
    890890    if (!ice->is_complete) { 
     891        char errmsg[PJ_ERR_MSG_SIZE]; 
    891892 
    892893        ice->is_complete = PJ_TRUE; 
     
    894895     
    895896        /* Log message */ 
    896         LOG((ice->obj_name, "ICE process complete")); 
     897        LOG((ice->obj_name, "ICE process complete, status=%s",  
     898             pj_strerror(status, errmsg, sizeof(errmsg)).ptr)); 
     899 
    897900        dump_checklist("Dumping checklist", ice, &ice->clist); 
    898901        dump_valid_list("Dumping valid list", ice); 
     
    11371140    dump_checklist("Checklist created:", ice, clist); 
    11381141 
    1139     pj_mutex_lock(ice->mutex); 
     1142    pj_mutex_unlock(ice->mutex); 
    11401143 
    11411144    return PJ_SUCCESS; 
Note: See TracChangeset for help on using the changeset viewer.