Ignore:
Timestamp:
Jun 17, 2006 4:08:30 AM (18 years ago)
Author:
bennylp
Message:

Modifications all over the place, but mainly only to update Doxygen documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_config.h

    r491 r515  
    2020#define __PJSIP_SIP_CONFIG_H__ 
    2121 
     22/** 
     23 * @file sip_config.h 
     24 * @brief Compile time configuration. 
     25 */ 
    2226#include <pj/config.h> 
     27 
     28/** 
     29 * @defgroup PJSIP PJSIP Library Collection 
     30 */ 
     31 
     32/** 
     33 * @defgroup PJSIP_CORE Core SIP Library 
     34 * @ingroup PJSIP 
     35 * @brief The core framework from which all other SIP components depends on. 
     36 *  
     37 * The PJSIP Core library only provides transport framework, event 
     38 * dispatching/module framework, and SIP message representation and 
     39 * parsing. It doesn't do anything usefull in itself! 
     40 * 
     41 * If application wants the stack to do anything usefull at all, 
     42 * it must registers @ref PJSIP_MOD to the core library. Examples 
     43 * of modules are @ref PJSIP_TRANSACT and @ref PJSUA_UA. 
     44 */ 
     45 
     46/** 
     47 * @defgroup PJSIP_BASE Base Types 
     48 * @ingroup PJSIP_CORE 
     49 * @brief Basic PJSIP types and configurations. 
     50 */ 
     51 
     52/** 
     53 * @defgroup PJSIP_CONFIG Compile Time Configuration 
     54 * @ingroup PJSIP_BASE 
     55 * @brief PJSIP compile time configurations. 
     56 * @{ 
     57 */ 
    2358 
    2459/** 
     
    74109#ifndef PJSIP_MAX_MODULE 
    75110#   define PJSIP_MAX_MODULE             16 
     111#endif 
     112 
     113 
     114/** 
     115 * Maximum packet length. 
     116 */ 
     117#ifndef PJSIP_MAX_PKT_LEN 
     118#   define PJSIP_MAX_PKT_LEN            1500 
    76119#endif 
    77120 
     
    85128/* Transport related constants. */ 
    86129 
    87 #define PJSIP_MAX_PKT_LEN               1500 
    88130#define PJSIP_POOL_RDATA_LEN            4000 
    89131#define PJSIP_POOL_RDATA_INC            4000 
     
    142184//#define PJSIP_T2_TIMEOUT      60000 
    143185 
    144 /* T1 timeout value. */ 
     186/** Transaction T1 timeout value. */ 
    145187#if !defined(PJSIP_T1_TIMEOUT) 
    146188#  define PJSIP_T1_TIMEOUT      500 
    147189#endif 
    148190 
    149 /* T2 timeout value. */ 
     191/** Transaction T2 timeout value. */ 
    150192#if !defined(PJSIP_T2_TIMEOUT) 
    151193#  define PJSIP_T2_TIMEOUT      4000 
    152194#endif 
    153195 
    154 /* Completed timer for non-INVITE */ 
     196/** Transaction completed timer for non-INVITE */ 
    155197#if !defined(PJSIP_T4_TIMEOUT) 
    156198#  define PJSIP_T4_TIMEOUT      5000 
    157199#endif 
    158200 
    159 /* Completed timer for INVITE */ 
     201/** Transaction completed timer for INVITE */ 
    160202#if !defined(PJSIP_TD_TIMEOUT) 
    161203#  define PJSIP_TD_TIMEOUT      32000 
     
    167209 */ 
    168210 
    169 /* 
     211/** 
    170212 * If this flag is set, the stack will keep the Authorization/Proxy-Authorization 
    171213 * headers that are sent in a cache. Future requests with the same realm and 
     
    183225#endif 
    184226 
    185 /* 
     227/** 
    186228 * If this flag is set, the stack will proactively send Authorization/Proxy- 
    187229 * Authorization header for next requests. If next request has the same method 
     
    204246#endif 
    205247 
    206 /* 
     248/** 
    207249 * Support qop="auth" directive. 
    208250 * This option also requires client to cache the last challenge offered by 
     
    216258 
    217259 
     260/** 
     261 * @} 
     262 */ 
     263 
    218264#include <pj/config.h> 
    219265 
Note: See TracChangeset for help on using the changeset viewer.