386BSD 0.1 development
[unix-history] / usr / src / include / arpa / nameser.h
index d18480b..84ed990 100644 (file)
@@ -1,22 +1,41 @@
 /*
 /*
- * Copyright (c) 1983 Regents of the University of California.
+ * Copyright (c) 1983, 1989 Regents of the University of California.
  * All rights reserved.
  *
  * All rights reserved.
  *
- * Redistribution and use in source and binary forms are permitted
- * provided that the above copyright notice and this paragraph are
- * duplicated in all such forms and that any documentation,
- * advertising materials, and other materials related to such
- * distribution and use acknowledge that the software was developed
- * by the University of California, Berkeley.  The name of the
- * University may not be used to endorse or promote products derived
- * from this software without specific prior written permission.
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *     This product includes software developed by the University of
+ *     California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
  *
  *
- *     @(#)nameser.h   5.19 (Berkeley) %G%
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ *     @(#)nameser.h   5.25 (Berkeley) 4/3/91
  */
 
  */
 
+#ifndef _NAMESER_H_
+#define        _NAMESER_H_
+
 /*
  * Define constants based on rfc883
  */
 /*
  * Define constants based on rfc883
  */
 #define T_HINFO                13              /* host information */
 #define T_MINFO                14              /* mailbox information */
 #define T_MX           15              /* mail routing information */
 #define T_HINFO                13              /* host information */
 #define T_MINFO                14              /* mailbox information */
 #define T_MX           15              /* mail routing information */
+#define T_TXT          16              /* text strings */
        /* non standard */
 #define T_UINFO                100             /* user (finger) information */
 #define T_UID          101             /* user ID */
        /* non standard */
 #define T_UINFO                100             /* user (finger) information */
 #define T_UID          101             /* user ID */
 
 #define C_IN           1               /* the arpa internet */
 #define C_CHAOS                3               /* for chaos net at MIT */
 
 #define C_IN           1               /* the arpa internet */
 #define C_CHAOS                3               /* for chaos net at MIT */
+#define C_HS           4               /* for Hesiod name server at MIT */
        /* Query class values which do not appear in resource records */
 #define C_ANY          255             /* wildcard match */
 
        /* Query class values which do not appear in resource records */
 #define C_ANY          255             /* wildcard match */
 
 #define CONV_BADBUFLEN -4
 
 #ifndef BYTE_ORDER
 #define CONV_BADBUFLEN -4
 
 #ifndef BYTE_ORDER
-#if defined(vax) || defined(ns32000) || defined(BIT_ZERO_ON_RIGHT)
+#define        LITTLE_ENDIAN   1234    /* least-significant byte first (vax) */
+#define        BIG_ENDIAN      4321    /* most-significant byte first (IBM, net) */
+#define        PDP_ENDIAN      3412    /* LSB first in word, MSW first in long (pdp) */
+
+#if defined(vax) || defined(ns32000) || defined(sun386) || defined(MIPSEL) || \
+    defined(BIT_ZERO_ON_RIGHT)
 #define BYTE_ORDER     LITTLE_ENDIAN
 #define BYTE_ORDER     LITTLE_ENDIAN
+
 #endif
 #endif
-#if defined(sun) || defined(sel) || defined(pyr) || defined(mc68000) || \
-    defined(is68k) || defined (tahoe) || defined (BIT_ZERO_ON_LEFT)
+#if defined(sel) || defined(pyr) || defined(mc68000) || defined(sparc) || \
+    defined(is68k) || defined(tahoe) || defined(ibm032) || defined(ibm370) || \
+    defined(MIPSEB) || defined (BIT_ZERO_ON_LEFT)
 #define BYTE_ORDER     BIG_ENDIAN
 #endif
 #endif /* BYTE_ORDER */
 #define BYTE_ORDER     BIG_ENDIAN
 #endif
 #endif /* BYTE_ORDER */
+
 #ifndef BYTE_ORDER
        /* you must determine what the correct bit order is for your compiler */
        UNDEFINED_BIT_ORDER;
 #ifndef BYTE_ORDER
        /* you must determine what the correct bit order is for your compiler */
        UNDEFINED_BIT_ORDER;
@@ -145,7 +174,7 @@ typedef struct {
        u_char  unused:2;       /* unused bits */
        u_char  rcode:4;        /* response code */
 #endif
        u_char  unused:2;       /* unused bits */
        u_char  rcode:4;        /* response code */
 #endif
-#if BYTE_ORDER == LITTLE_ENDIAN
+#if BYTE_ORDER == LITTLE_ENDIAN || BYTE_ORDER == PDP_ENDIAN
                        /* fields in third byte */
        u_char  rd:1;           /* recursion desired */
        u_char  tc:1;           /* truncated message */
                        /* fields in third byte */
        u_char  rd:1;           /* recursion desired */
        u_char  tc:1;           /* truncated message */
@@ -219,3 +248,5 @@ extern      u_long  _getlong();
        (cp)[0] = l >> 8; \
        (cp) += sizeof(u_long); \
 }
        (cp)[0] = l >> 8; \
        (cp) += sizeof(u_long); \
 }
+
+#endif /* !_NAMESER_H_ */