Ignore:
Timestamp:
May 15, 2007 10:42:56 AM (17 years ago)
Author:
bennylp
Message:

Fixed several STUN bugs: USERNAME, REALM etc are not allowed in the response, retransmission timer calculation bug, etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/include/pjnath/config.h

    r1153 r1275  
    8989 
    9090/** 
    91  * Maximum number of STUN retransmission count. 
     91 * Maximum number of STUN transmission count. 
    9292 * 
    9393 * Default: 7 (as per RFC 3489-bis) 
    9494 */ 
    95 #ifndef PJ_STUN_MAX_RETRANSMIT_COUNT 
    96 #   define PJ_STUN_MAX_RETRANSMIT_COUNT             7 
     95#ifndef PJ_STUN_MAX_TRANSMIT_COUNT 
     96#   define PJ_STUN_MAX_TRANSMIT_COUNT               7 
     97#endif 
     98 
     99 
     100/** 
     101 * Duration to keep response in the cache, in msec. 
     102 * 
     103 * Default: 10000 (as per RFC 3489-bis) 
     104 */ 
     105#ifndef PJ_STUN_RES_CACHE_DURATION 
     106#   define PJ_STUN_RES_CACHE_DURATION               10000 
    97107#endif 
    98108 
Note: See TracChangeset for help on using the changeset viewer.