Ignore:
Timestamp:
Apr 5, 2007 11:32:47 AM (17 years ago)
Author:
bennylp
Message:

ICE (work in progress): handle early check that is received before answer

File:
1 edited

Legend:

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

    r1141 r1152  
    295295} 
    296296 
     297/* 
     298 * Request to retransmit the request. 
     299 */ 
     300PJ_DEF(pj_status_t) pj_stun_client_tsx_retransmit(pj_stun_client_tsx *tsx) 
     301{ 
     302    if (tsx->destroy_timer.id != 0) { 
     303        return PJ_SUCCESS; 
     304    } 
     305 
     306    if (tsx->retransmit_timer.id != 0) { 
     307        pj_timer_heap_cancel(tsx->cfg->timer_heap, &tsx->retransmit_timer); 
     308        tsx->retransmit_timer.id = 0; 
     309    } 
     310 
     311    return tsx_transmit_msg(tsx); 
     312} 
    297313 
    298314/* Timer callback to destroy transaction */ 
Note: See TracChangeset for help on using the changeset viewer.