Ignore:
Timestamp:
Mar 27, 2007 11:29:27 PM (17 years ago)
Author:
bennylp
Message:

Created doxygen documentation for PJNATH

File:
1 edited

Legend:

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

    r1101 r1110  
    4040 */ 
    4141 
    42  
    43 /** 
    44  * The default initial STUN round-trip time estimation (the RTO value 
    45  * in RFC 3489-bis), in miliseconds.  
    46  * This value is used to control the STUN request  
    47  * retransmit time. The initial value of retransmission interval  
    48  * would be set to this value, and will be doubled after each 
    49  * retransmission. 
    50  */ 
    51 #ifndef PJ_STUN_RTO_VALUE 
    52 #   define PJ_STUN_RTO_VALUE                100 
    53 #endif 
    54  
    55  
    56 /** 
    57  * The STUN transaction timeout value, in miliseconds. 
    58  * After the last retransmission is sent and if no response is received  
    59  * after this time, the STUN transaction will be considered to have failed. 
    60  * 
    61  * The default value is 1600 miliseconds (as per RFC 3489-bis). 
    62  */ 
    63 #ifndef PJ_STUN_TIMEOUT_VALUE 
    64 #   define PJ_STUN_TIMEOUT_VALUE            1600 
    65 #endif 
    66  
    67  
    68 /** 
    69  * Maximum number of STUN retransmission count. 
    70  * 
    71  * Default: 7 (as per RFC 3489-bis) 
    72  */ 
    73 #ifndef PJ_STUN_MAX_RETRANSMIT_COUNT 
    74 #   define PJ_STUN_MAX_RETRANSMIT_COUNT     7 
    75 #endif 
    76  
    77  
    78 /** 
    79  * Maximum size of STUN message. 
    80  */ 
    81 #ifndef PJ_STUN_MAX_PKT_LEN 
    82 #   define PJ_STUN_MAX_PKT_LEN              512 
    83 #endif 
    84  
    85  
    86 /** 
    87  * Default STUN port as defined by RFC 3489. 
    88  */ 
    89 #define PJ_STUN_PORT                        3478 
    9042 
    9143/** 
Note: See TracChangeset for help on using the changeset viewer.