summaryrefslogtreecommitdiffstats
path: root/src/include/krb5/hostaddr.h
diff options
context:
space:
mode:
authorKeith Vetter <keithv@fusion.com>1995-04-14 00:56:21 +0000
committerKeith Vetter <keithv@fusion.com>1995-04-14 00:56:21 +0000
commit48e59557cdff501a25c809cda3f1dd34a27cc52f (patch)
tree3bbc11e8ef7f3866da45c06871f18b1fae020bcb /src/include/krb5/hostaddr.h
parent73bd684de42505fe4e6a15803ddf074c57db671c (diff)
downloadkrb5-48e59557cdff501a25c809cda3f1dd34a27cc52f.tar.gz
krb5-48e59557cdff501a25c809cda3f1dd34a27cc52f.tar.xz
krb5-48e59557cdff501a25c809cda3f1dd34a27cc52f.zip
Windows global stuff:
o removed INTERFACE from non-api functions o add FAR to pointers visible to the world o made the tests for __STDC__ also check for _WINDOWS o creates GSSAPI.DLL & GSSAPI.LIB as per spec. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5354 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5/hostaddr.h')
-rw-r--r--src/include/krb5/hostaddr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/krb5/hostaddr.h b/src/include/krb5/hostaddr.h
index a7a8b9922..ff420164f 100644
--- a/src/include/krb5/hostaddr.h
+++ b/src/include/krb5/hostaddr.h
@@ -32,7 +32,7 @@ typedef struct _krb5_address {
krb5_magic magic;
krb5_addrtype addrtype;
int length;
- krb5_octet *contents;
+ krb5_octet FAR *contents;
} krb5_address;
/* per Kerberos v5 protocol spec */
@@ -50,7 +50,7 @@ typedef struct _krb5_address {
/* implementation-specific stuff: */
typedef struct _krb5_fulladdr {
- krb5_address *address;
+ krb5_address FAR *address;
unsigned long port; /* port, for some address types.
large enough for most protos? */
} krb5_fulladdr;