add ADDRTYPE_ADDRPORT, ADDRTYPE_IPPORT
authorJohn Kohl <jtkohl@mit.edu>
Mon, 25 Feb 1991 11:23:25 +0000 (11:23 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Mon, 25 Feb 1991 11:23:25 +0000 (11:23 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1771 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/hostaddr.h

index 45c9a56709d0fd9266465fc53c8805a358d6b694..a8e54759434dd6184b40aa797ba44257f08f0ef5 100644 (file)
@@ -3,7 +3,8 @@
  * $Author$
  * $Id$
  *
- * Copyright 1989 by the Massachusetts Institute of Technology.
+ * Copyright 1989,1991 by the Massachusetts Institute of Technology.
+ * All Rights Reserved.
  *
  * For copying and distribution information, please see the file
  * <krb5/copyright.h>.
@@ -11,8 +12,6 @@
  * hostaddr definitions for Kerberos version 5.
  */
 
-#include <krb5/copyright.h>
-
 #ifndef KRB5_HOSTADDR__
 #define KRB5_HOSTADDR__
 
@@ -29,6 +28,9 @@ typedef struct _krb5_address {
 #define        ADDRTYPE_XNS    0x0006
 #define        ADDRTYPE_ISO    0x0007
 #define ADDRTYPE_DDP   0x0010
+/* not yet in the spec... */
+#define ADDRTYPE_ADDRPORT      0x0100
+#define ADDRTYPE_IPPORT                0x0101
 
 /* macros to determine if a type is a local type */
 #define ADDRTYPE_IS_LOCAL(addrtype) (addrtype & 0x8000)