From: John Kohl Date: Mon, 25 Feb 1991 11:23:25 +0000 (+0000) Subject: add ADDRTYPE_ADDRPORT, ADDRTYPE_IPPORT X-Git-Tag: krb5-1.0-alpha4~201 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e69772060cc014b7699f7dabbfbf473f9469672d;p=krb5.git add ADDRTYPE_ADDRPORT, ADDRTYPE_IPPORT git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1771 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/hostaddr.h b/src/include/krb5/hostaddr.h index 45c9a5670..a8e547594 100644 --- a/src/include/krb5/hostaddr.h +++ b/src/include/krb5/hostaddr.h @@ -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 * . @@ -11,8 +12,6 @@ * hostaddr definitions for Kerberos version 5. */ -#include - #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)