Ignore:
Timestamp:
Sep 18, 2007 7:33:33 PM (17 years ago)
Author:
bennylp
Message:

Ticket #374: Update STUN specification from rfc3489bis-06 to rfc3489bis-10

File:
1 edited

Legend:

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

    r1275 r1439  
    5050 
    5151/* ************************************************************************** 
    52  * STUN CLIENT CONFIGURATION 
     52 * STUN CONFIGURATION 
    5353 */ 
    5454 
     
    8181 * after this time, the STUN transaction will be considered to have failed. 
    8282 * 
    83  * The default value is 1600 miliseconds (as per RFC 3489-bis). 
     83 * The default value is 16x RTO (as per RFC 3489-bis). 
    8484 */ 
    8585#ifndef PJ_STUN_TIMEOUT_VALUE 
    86 #   define PJ_STUN_TIMEOUT_VALUE                    1600 
     86#   define PJ_STUN_TIMEOUT_VALUE                    (16 * PJ_STUN_RTO_VALUE) 
    8787#endif 
    8888 
     
    121121#define PJ_STUN_PORT                                3478 
    122122 
     123 
     124/** 
     125 * Padding character for string attributes. 
     126 * 
     127 * Default: ASCII 0 
     128 */ 
     129#ifndef PJ_STUN_STRING_ATTR_PAD_CHR 
     130#   define PJ_STUN_STRING_ATTR_PAD_CHR              0 
     131#endif 
    123132 
    124133 
Note: See TracChangeset for help on using the changeset viewer.