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/include/pjnath/config.h

    r1140 r1152  
    166166 
    167167/** 
     168 * According to ICE Section 8.2. Updating States, if an In-Progress pair in  
     169 * the check list is for the same component as a nominated pair, the agent  
     170 * SHOULD cease retransmissions for its check if its pair priority is lower 
     171 * than the lowest priority nominated pair for that component. 
     172 * 
     173 * If a higher priority check is In Progress, this rule would cause that 
     174 * check to be performed even when it most likely will fail. 
     175 * 
     176 * The macro here controls if ICE session should cancel all In Progress  
     177 * checks for the same component regardless of its priority. 
     178 * 
     179 * Default: 1 (yes, cancel all) 
     180 */ 
     181#ifndef PJ_ICE_CANCEL_ALL 
     182#   define PJ_ICE_CANCEL_ALL                        1 
     183#endif 
     184 
     185 
     186/** 
    168187 * Minimum interval value to be used for sending STUN keep-alive on the ICE 
    169188 * stream transport, in seconds. This minimum interval, plus a random value 
     
    196215 
    197216 
    198  
    199217/** 
    200218 * @} 
Note: See TracChangeset for help on using the changeset viewer.