source: rtems/cpukit/libnetworking/libc/res_config.h @ 94b3ee13

4.104.114.84.95
Last change on this file since 94b3ee13 was 94b3ee13, checked in by Joel Sherrill <joel.sherrill@…>, on 01/21/99 at 22:25:43

Made to compile after hacking tftp driver into beginnings of a mini-filesystem.

  • Property mode set to 100644
File size: 774 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#define DEBUG   1       /* enable debugging code (needed for dig) */
6#define RESOLVSORT      /* allow sorting of addresses in gethostbyname */
7#define RFC1535         /* comply with RFC1535 (STRONGLY reccomended by vixie)*/
8#undef  USELOOPBACK     /* res_init() bind to localhost */
9#undef  SUNSECURITY     /* verify gethostbyaddr() calls - WE DONT NEED IT  */
10#define MULTI_PTRS_ARE_ALIASES 1 /* fold multiple PTR records into aliases */
11#define CHECK_SRVR_ADDR 1 /* confirm that the server requested sent the reply */
12#define BIND_UPDATE 1   /* update support */
13
14#if defined(__rtems__)
15u_int16_t _getshort(const u_char *src);
16u_int32_t _getlong(const u_char *src);
17int gethostname (char *name, size_t namelen);
18int sethostname (char *name, size_t namelen);
19int issetugid (void);
20#endif
Note: See TracBrowser for help on using the repository browser.