Ignore:
Timestamp:
Oct 8, 2006 1:56:07 PM (18 years ago)
Author:
bennylp
Message:

Added pjlib-util/config.h and pjlib-util/types.h to put
together common settings, and updated Doxygen documentation
for PJLIB-UTIL.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/include/pjlib-util/dns.h

    r753 r754  
    2525 * @brief Low level DNS message parsing and packetization. 
    2626 */ 
    27 #include <pj/types.h> 
     27#include <pjlib-util/types.h> 
    2828 
    2929 
    3030PJ_BEGIN_DECL 
    3131 
    32  
    33 /** 
    34  * @defgroup PJ_DNS Low-level DNS message parsing and packetization 
    35  * @ingroup PJ 
     32/** 
     33 * @defgroup PJ_DNS DNS and Asynchronous DNS Resolver 
     34 * @ingroup PJLIB_UTIL 
     35 */ 
     36 
     37/** 
     38 * @defgroup PJ_DNS_PARSING Low-level DNS Message Parsing and Packetization 
     39 * @ingroup PJ_DNS 
    3640 * @{ 
    3741 * 
     
    200204 
    201205/** 
    202  * This constant specifies the maximum names to keep in the temporary name 
    203  * table when performing name compression scheme when duplicating DNS packet 
    204  * (the #pj_dns_packet_dup() function). 
    205  * 
    206  * Generally name compression is desired, since it saves some memory (see 
    207  * PJ_DNS_RESOLVER_RES_BUF_SIZE setting). However it comes at the expense of  
    208  * a little processing overhead to perform name scanning and also a little 
    209  * bit more stack usage (8 bytes per entry on 32bit platform). 
    210  * 
    211  * Default: 16 
    212  */ 
    213 #ifndef PJ_DNS_MAX_NAMES_IN_NAMETABLE 
    214 #   define PJ_DNS_MAX_NAMES_IN_NAMETABLE        16 
    215 #endif 
    216  
    217  
    218 /** 
    219206 * This structure describes a DNS query record. 
    220207 */ 
     
    345332 * @param pool          The pool to allocate memory for the duplicated packet. 
    346333 * @param p             The DNS packet to be cloned. 
    347  * @p_dst               Pointer to store the cloned DNS packet. 
     334 * @param p_dst         Pointer to store the cloned DNS packet. 
    348335 */ 
    349336PJ_DECL(void) pj_dns_packet_dup(pj_pool_t *pool, 
Note: See TracChangeset for help on using the changeset viewer.