Changeset 754 for pjproject/trunk/pjlib-util/include/pjlib-util/dns.h
- Timestamp:
- Oct 8, 2006 1:56:07 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib-util/include/pjlib-util/dns.h
r753 r754 25 25 * @brief Low level DNS message parsing and packetization. 26 26 */ 27 #include <pj /types.h>27 #include <pjlib-util/types.h> 28 28 29 29 30 30 PJ_BEGIN_DECL 31 31 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 36 40 * @{ 37 41 * … … 200 204 201 205 /** 202 * This constant specifies the maximum names to keep in the temporary name203 * table when performing name compression scheme when duplicating DNS packet204 * (the #pj_dns_packet_dup() function).205 *206 * Generally name compression is desired, since it saves some memory (see207 * PJ_DNS_RESOLVER_RES_BUF_SIZE setting). However it comes at the expense of208 * a little processing overhead to perform name scanning and also a little209 * bit more stack usage (8 bytes per entry on 32bit platform).210 *211 * Default: 16212 */213 #ifndef PJ_DNS_MAX_NAMES_IN_NAMETABLE214 # define PJ_DNS_MAX_NAMES_IN_NAMETABLE 16215 #endif216 217 218 /**219 206 * This structure describes a DNS query record. 220 207 */ … … 345 332 * @param pool The pool to allocate memory for the duplicated packet. 346 333 * @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. 348 335 */ 349 336 PJ_DECL(void) pj_dns_packet_dup(pj_pool_t *pool,
Note: See TracChangeset
for help on using the changeset viewer.