summaryrefslogtreecommitdiff
path: root/h/zephyr
diff options
context:
space:
mode:
authorGravatar Greg Hudson <ghudson@mit.edu>1997-09-23 15:23:52 +0000
committerGravatar Greg Hudson <ghudson@mit.edu>1997-09-23 15:23:52 +0000
commit18684855af9e7fbabdb61f9704a6c21d77b00d8d (patch)
tree0c25da8a9f350f75bb95dbe038628c77e8dfbee0 /h/zephyr
parent6f7b9c2241b9625f90117604ab1145fb2624c2ed (diff)
Remove Kerberos-dependent pieces so that we can be a fixed header file
(which will soon move to just zephyr.h). The Kerberos-dependent pieces are only used by the server and can be in server/zserver.h.
Diffstat (limited to 'h/zephyr')
-rw-r--r--h/zephyr/zephyr.h.in17
1 files changed, 0 insertions, 17 deletions
diff --git a/h/zephyr/zephyr.h.in b/h/zephyr/zephyr.h.in
index c1bd5f8..156650a 100644
--- a/h/zephyr/zephyr.h.in
+++ b/h/zephyr/zephyr.h.in
@@ -15,16 +15,10 @@
#ifndef __ZEPHYR_H__
#define __ZEPHYR_H__
-/* Define if Zephyr uses Kerberos support. */
-#undef ZEPHYR_USES_KERBEROS
-
#include <sys/types.h>
#include <sys/time.h>
#include <zephyr/zephyr_err.h>
-#ifdef ZEPHYR_USES_KERBEROS
-#include <krb.h>
-#endif
#ifndef IPPROTO_MAX /* Make sure not already included */
#include <netinet/in.h>
@@ -185,9 +179,6 @@ Code_t ZSetLocation ZP((char *exposure));
Code_t ZUnsetLocation ZP((void));
Code_t ZFlushMyLocations ZP((void));
char *ZParseExposureLevel ZP((char *text));
-#ifdef ZEPHYR_USES_KERBEROS
-Code_t ZFormatAuthenticNotice ZP((ZNotice_t*, char*, int, int*, C_Block));
-#endif
Code_t ZFormatRawNotice ZP((ZNotice_t *, char**, int *));
Code_t ZRetrieveSubscriptions ZP((unsigned short, int*));
Code_t ZOpenPort ZP((unsigned short *port));
@@ -236,14 +227,6 @@ extern char __Zephyr_realm[];
#define ZGetDestAddr() __HM_addr
#define ZGetRealm() __Zephyr_realm
-#ifdef ZEPHYR_USES_KERBEROS
-/* Session key for last parsed packet - server only */
-extern C_Block __Zephyr_session;
-#define ZGetSession() (__Zephyr_session)
-#else
-#define __Zephyr_realm ("local-realm")
-#endif
-
#ifdef Z_DEBUG
void ZSetDebug ZP((void (*)(ZCONST char *, va_list, void *), void *));