Ignore:
Timestamp:
Sep 30, 2006 11:39:17 AM (18 years ago)
Author:
bennylp
Message:

Added initial implementation of low-level DNS packetization
and parsing functions in PJLIB-UTIL/dns.h. Errors codes
added for DNS formatting related errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/errno.h

    r722 r745  
    288288/** 
    289289 * @hideinitializer 
    290  * Error in gethostbyname() 
     290 * Error in gethostbyname(). This is a generic error returned when 
     291 * gethostbyname() has returned an error. 
    291292 */ 
    292293#define PJ_ERESOLVE         (PJ_ERRNO_START_STATUS + 18)/* 70018 */ 
     294/** 
     295 * @hideinitializer 
     296 * Size is too small. 
     297 */ 
     298#define PJ_ETOOSMALL        (PJ_ERRNO_START_STATUS + 19)/* 70019 */ 
    293299 
    294300 
Note: See TracChangeset for help on using the changeset viewer.