summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@mit.edu>2008-01-20 19:40:42 +0000
committerGravatar Karl Ramm <kcr@mit.edu>2008-01-20 19:40:42 +0000
commit3017fb3605d59cb41c4def4ffd0b7f967f99315d (patch)
treec690b0c00d780759eb48d8f11af30d429a916382
parentf87e7cd5f4295337f9bc07895c3e2a43c5c65a94 (diff)
first pass de-K&Rify lib
-rw-r--r--lib/ZAsyncLocate.c30
-rw-r--r--lib/ZCkAuth.c6
-rw-r--r--lib/ZCkIfNot.c10
-rw-r--r--lib/ZCkZAut.c5
-rw-r--r--lib/ZClosePort.c3
-rw-r--r--lib/ZCmpUID.c5
-rw-r--r--lib/ZCmpUIDP.c12
-rw-r--r--lib/ZFlsLocs.c3
-rw-r--r--lib/ZFlsSubs.c3
-rw-r--r--lib/ZFmtAuth.c24
-rw-r--r--lib/ZFmtList.c15
-rw-r--r--lib/ZFmtNotice.c20
-rw-r--r--lib/ZFmtRaw.c8
-rw-r--r--lib/ZFmtRawLst.c12
-rw-r--r--lib/ZFmtSmRLst.c12
-rw-r--r--lib/ZFmtSmRaw.c16
-rw-r--r--lib/ZFreeNot.c4
-rw-r--r--lib/ZGetLocs.c6
-rw-r--r--lib/ZGetSender.c3
-rw-r--r--lib/ZGetSubs.c6
-rw-r--r--lib/ZGetWGPort.c3
-rw-r--r--lib/ZIfNotice.c10
-rw-r--r--lib/ZInit.c3
-rw-r--r--lib/ZLocations.c30
-rw-r--r--lib/ZMakeAscii.c26
-rw-r--r--lib/ZMakeZcode.c18
-rw-r--r--lib/ZMkAuth.c46
-rw-r--r--lib/ZNewLocU.c8
-rw-r--r--lib/ZOpenPort.c4
-rw-r--r--lib/ZParseNot.c13
-rw-r--r--lib/ZPeekIfNot.c10
-rw-r--r--lib/ZPeekNot.c6
-rw-r--r--lib/ZPeekPkt.c8
-rw-r--r--lib/ZPending.c3
-rw-r--r--lib/ZReadAscii.c26
-rw-r--r--lib/ZReadZcode.c21
-rw-r--r--lib/ZRecvNot.c6
-rw-r--r--lib/ZRecvPkt.c8
-rw-r--r--lib/ZRetSubs.c24
-rw-r--r--lib/ZSendList.c21
-rw-r--r--lib/ZSendNot.c14
-rw-r--r--lib/ZSendPkt.c22
-rw-r--r--lib/ZSendRLst.c16
-rw-r--r--lib/ZSendRaw.c4
-rw-r--r--lib/ZSetDest.c4
-rw-r--r--lib/ZSetFD.c4
-rw-r--r--lib/ZSetSrv.c4
-rw-r--r--lib/ZSubs.c60
-rw-r--r--lib/ZVariables.c34
-rw-r--r--lib/ZWait4Not.c10
-rw-r--r--lib/ZhmStat.c6
-rw-r--r--lib/Zinternal.c287
52 files changed, 488 insertions, 474 deletions
diff --git a/lib/ZAsyncLocate.c b/lib/ZAsyncLocate.c
index d248064..41ecffb 100644
--- a/lib/ZAsyncLocate.c
+++ b/lib/ZAsyncLocate.c
@@ -16,11 +16,11 @@
static const char rcsid_ZAsyncLocate_c[] = "$Id$";
#endif
-Code_t ZRequestLocations(user, zald, kind, auth)
- char *user;
- register ZAsyncLocateData_t *zald;
- ZNotice_Kind_t kind; /* UNSAFE, UNACKED, or ACKED */
- Z_AuthProc auth;
+Code_t
+ZRequestLocations(char *user,
+ register ZAsyncLocateData_t *zald,
+ ZNotice_Kind_t kind, /* UNSAFE, UNACKED, or ACKED */
+ Z_AuthProc auth)
{
int retval;
ZNotice_t notice;
@@ -57,11 +57,11 @@ Code_t ZRequestLocations(user, zald, kind, auth)
return(ZERR_NONE);
}
-Code_t ZParseLocations(notice,zald,nlocs,user)
- register ZNotice_t *notice;
- register ZAsyncLocateData_t *zald;
- int *nlocs;
- char **user;
+Code_t
+ZParseLocations(register ZNotice_t *notice,
+ register ZAsyncLocateData_t *zald,
+ int *nlocs,
+ char **user)
{
char *ptr, *end;
int i;
@@ -149,16 +149,16 @@ Code_t ZParseLocations(notice,zald,nlocs,user)
return (ZERR_NONE);
}
-int ZCompareALDPred(notice, zald)
- ZNotice_t *notice;
- void *zald;
+int
+ZCompareALDPred(ZNotice_t *notice,
+ void *zald)
{
return(ZCompareUID(&(notice->z_multiuid),
&(((ZAsyncLocateData_t *) zald)->uid)));
}
-void ZFreeALD(zald)
- register ZAsyncLocateData_t *zald;
+void
+ZFreeALD(register ZAsyncLocateData_t *zald)
{
if (!zald) return;
diff --git a/lib/ZCkAuth.c b/lib/ZCkAuth.c
index 4c83e6a..040b198 100644
--- a/lib/ZCkAuth.c
+++ b/lib/ZCkAuth.c
@@ -29,9 +29,9 @@ static char rcsid_ZCheckAuthentication_c[] =
When not using Kerberos, return true if the notice claims to be authentic.
Only used by clients; the server uses its own routine.
*/
-Code_t ZCheckAuthentication(notice, from)
- ZNotice_t *notice;
- struct sockaddr_in *from;
+Code_t
+ZCheckAuthentication(ZNotice_t *notice,
+ struct sockaddr_in *from)
{
#if 0
#if defined(HAVE_KRB4) || defined(HAVE_KRB5)
diff --git a/lib/ZCkIfNot.c b/lib/ZCkIfNot.c
index fcc9546..e8fcaf2 100644
--- a/lib/ZCkIfNot.c
+++ b/lib/ZCkIfNot.c
@@ -16,11 +16,11 @@
static const char rcsid_ZCheckIfNotice_c[] = "$Id$";
#endif
-Code_t ZCheckIfNotice(notice, from, predicate, args)
- ZNotice_t *notice;
- struct sockaddr_in *from;
- register int (*predicate) __P((ZNotice_t *, void *));
- void *args;
+Code_t
+ZCheckIfNotice(ZNotice_t *notice,
+ struct sockaddr_in *from,
+ register int (*predicate)(ZNotice_t *, void *),
+ void *args)
{
ZNotice_t tmpnotice;
Code_t retval;
diff --git a/lib/ZCkZAut.c b/lib/ZCkZAut.c
index 069c1ea..470e20d 100644
--- a/lib/ZCkZAut.c
+++ b/lib/ZCkZAut.c
@@ -31,9 +31,8 @@ static char rcsid_ZCheckAuthentication_c[] =
When not using Kerberos, return true if the notice claims to be authentic.
Only used by clients; the server uses its own routine.
*/
-Code_t ZCheckZcodeAuthentication(notice, from)
- ZNotice_t *notice;
- struct sockaddr_in *from;
+Code_t ZCheckZcodeAuthentication(ZNotice_t *notice,
+ struct sockaddr_in *from)
{
/* If the value is already known, return it. */
if (notice->z_checked_auth != ZAUTH_UNSET)
diff --git a/lib/ZClosePort.c b/lib/ZClosePort.c
index f249869..bd212b4 100644
--- a/lib/ZClosePort.c
+++ b/lib/ZClosePort.c
@@ -16,7 +16,8 @@
static const char rcsid_ZClosePort_c[] = "$Id$";
#endif
-Code_t ZClosePort()
+Code_t
+ZClosePort(void)
{
if (__Zephyr_fd >= 0 && __Zephyr_open)
(void) close(__Zephyr_fd);
diff --git a/lib/ZCmpUID.c b/lib/ZCmpUID.c
index 96ad978..53ef450 100644
--- a/lib/ZCmpUID.c
+++ b/lib/ZCmpUID.c
@@ -16,8 +16,9 @@ static char rcsid_ZCompareUID_c[] = "$Id$";
#include <internal.h>
-int ZCompareUID(uid1, uid2)
- ZUnique_Id_t *uid1, *uid2;
+int
+ZCompareUID(ZUnique_Id_t *uid1,
+ ZUnique_Id_t *uid2)
{
return (!memcmp((char *)uid1, (char *)uid2, sizeof (*uid1)));
}
diff --git a/lib/ZCmpUIDP.c b/lib/ZCmpUIDP.c
index 19cbc16..087fc33 100644
--- a/lib/ZCmpUIDP.c
+++ b/lib/ZCmpUIDP.c
@@ -16,16 +16,16 @@ static char rcsid_ZCompareUIDPred_c[] = "$Id$";
#include <internal.h>
-int ZCompareUIDPred(notice, uid)
- ZNotice_t *notice;
- void *uid;
+int
+ZCompareUIDPred(ZNotice_t *notice,
+ void *uid)
{
return (ZCompareUID(&notice->z_uid, (ZUnique_Id_t *) uid));
}
-int ZCompareMultiUIDPred(notice, uid)
- ZNotice_t *notice;
- void *uid;
+int
+ZCompareMultiUIDPred(ZNotice_t *notice,
+ void *uid)
{
return (ZCompareUID(&notice->z_multiuid, (ZUnique_Id_t *) uid));
}
diff --git a/lib/ZFlsLocs.c b/lib/ZFlsLocs.c
index 58c3346..0e533ae 100644
--- a/lib/ZFlsLocs.c
+++ b/lib/ZFlsLocs.c
@@ -16,7 +16,8 @@ static char rcsid_ZFlushLocations_c[] = "$Id$";
#include <internal.h>
-Code_t ZFlushLocations()
+Code_t
+ZFlushLocations(void)
{
int i;
diff --git a/lib/ZFlsSubs.c b/lib/ZFlsSubs.c
index 7ea5ef4..ae37949 100644
--- a/lib/ZFlsSubs.c
+++ b/lib/ZFlsSubs.c
@@ -16,7 +16,8 @@
static const char rcsid_ZFlushSubscriptions_c[] = "$Id$";
#endif
-Code_t ZFlushSubscriptions()
+Code_t
+ZFlushSubscriptions(void)
{
register int i;
diff --git a/lib/ZFmtAuth.c b/lib/ZFmtAuth.c
index 97a70f2..1e19f2f 100644
--- a/lib/ZFmtAuth.c
+++ b/lib/ZFmtAuth.c
@@ -17,12 +17,12 @@ static char rcsid_ZFormatAuthenticNotice_c[] = "$Id$";
#include <internal.h>
#if defined(HAVE_KRB4) || defined(HAVE_KRB5)
-Code_t ZFormatAuthenticNotice(notice, buffer, buffer_len, len, session)
- ZNotice_t *notice;
- register char *buffer;
- register int buffer_len;
- int *len;
- C_Block session;
+Code_t
+ZFormatAuthenticNotice(ZNotice_t *notice,
+ register char *buffer,
+ register int buffer_len,
+ int *len,
+ C_Block session)
{
ZNotice_t newnotice;
char *ptr;
@@ -64,12 +64,12 @@ Code_t ZFormatAuthenticNotice(notice, buffer, buffer_len, len, session)
#endif
#ifdef HAVE_KRB5
-Code_t ZFormatAuthenticNoticeV5(notice, buffer, buffer_len, len, keyblock)
- ZNotice_t *notice;
- register char *buffer;
- register int buffer_len;
- int *len;
- krb5_keyblock *keyblock;
+Code_t
+ZFormatAuthenticNoticeV5(ZNotice_t *notice,
+ register char *buffer,
+ register int buffer_len,
+ int *len,
+ krb5_keyblock *keyblock)
{
ZNotice_t newnotice;
char *ptr;
diff --git a/lib/ZFmtList.c b/lib/ZFmtList.c
index d0adbdc..adad0fb 100644
--- a/lib/ZFmtList.c
+++ b/lib/ZFmtList.c
@@ -17,14 +17,13 @@ static const char rcsid_ZFormatNoticeList_c[] =
"$Id$";
#endif
-Code_t ZFormatNoticeList(notice, list, nitems, buffer, ret_len,
- cert_routine)
- ZNotice_t *notice;
- register char **list;
- int nitems;
- char **buffer;
- int *ret_len;
- Z_AuthProc cert_routine;
+Code_t
+ZFormatNoticeList(ZNotice_t *notice,
+ register char **list,
+ int nitems,
+ char **buffer,
+ int *ret_len,
+ Z_AuthProc cert_routine)
{
char header[Z_MAXHEADERLEN];
register int i;
diff --git a/lib/ZFmtNotice.c b/lib/ZFmtNotice.c
index 0b9ca39..f0ad059 100644
--- a/lib/ZFmtNotice.c
+++ b/lib/ZFmtNotice.c
@@ -16,11 +16,11 @@ static char rcsid_ZFormatNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZFormatNotice(notice, buffer, ret_len, cert_routine)
- register ZNotice_t *notice;
- char **buffer;
- int *ret_len;
- Z_AuthProc cert_routine;
+Code_t
+ZFormatNotice(register ZNotice_t *notice,
+ char **buffer,
+ int *ret_len,
+ Z_AuthProc cert_routine)
{
char header[Z_MAXHEADERLEN];
int hdrlen;
@@ -42,11 +42,11 @@ Code_t ZFormatNotice(notice, buffer, ret_len, cert_routine)
return (ZERR_NONE);
}
-Code_t ZNewFormatNotice(notice, buffer, ret_len, cert_routine)
- register ZNotice_t *notice;
- char **buffer;
- int *ret_len;
- Z_AuthProc cert_routine;
+Code_t
+ZNewFormatNotice(register ZNotice_t *notice,
+ char **buffer,
+ int *ret_len,
+ Z_AuthProc cert_routine)
{
char header[Z_MAXHEADERLEN];
int hdrlen;
diff --git a/lib/ZFmtRaw.c b/lib/ZFmtRaw.c
index 2940f98..c56d747 100644
--- a/lib/ZFmtRaw.c
+++ b/lib/ZFmtRaw.c
@@ -16,10 +16,10 @@ static char rcsid_ZFormatRawNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZFormatRawNotice(notice, buffer, ret_len)
- register ZNotice_t *notice;
- char **buffer;
- int *ret_len;
+Code_t
+ZFormatRawNotice(register ZNotice_t *notice,
+ char **buffer,
+ int *ret_len)
{
char header[Z_MAXHEADERLEN];
int hdrlen;
diff --git a/lib/ZFmtRawLst.c b/lib/ZFmtRawLst.c
index 7d83f71..470b01f 100644
--- a/lib/ZFmtRawLst.c
+++ b/lib/ZFmtRawLst.c
@@ -16,12 +16,12 @@ static char rcsid_ZFormatRawNoticeList_c[] = "$Id$";
#include <internal.h>
-Code_t ZFormatRawNoticeList(notice, list, nitems, buffer, ret_len)
- ZNotice_t *notice;
- char *list[];
- int nitems;
- char **buffer;
- int *ret_len;
+Code_t
+ZFormatRawNoticeList(ZNotice_t *notice,
+ char *list[],
+ int nitems,
+ char **buffer,
+ int *ret_len)
{
char header[Z_MAXHEADERLEN];
int hdrlen, i, size;
diff --git a/lib/ZFmtSmRLst.c b/lib/ZFmtSmRLst.c
index 6e41285..cc5177a 100644
--- a/lib/ZFmtSmRLst.c
+++ b/lib/ZFmtSmRLst.c
@@ -16,12 +16,12 @@ static char rcsid_ZFormatRawNoticeList_c[] = "$Id$";
#include <internal.h>
-Code_t ZFormatSmallRawNoticeList(notice, list, nitems, buffer, ret_len)
- ZNotice_t *notice;
- char *list[];
- int nitems;
- ZPacket_t buffer;
- int *ret_len;
+Code_t
+ZFormatSmallRawNoticeList(ZNotice_t *notice,
+ char *list[],
+ int nitems,
+ ZPacket_t buffer,
+ int *ret_len)
{
Code_t retval;
int hdrlen, i, size;
diff --git a/lib/ZFmtSmRaw.c b/lib/ZFmtSmRaw.c
index 0fcd74c..3f23d62 100644
--- a/lib/ZFmtSmRaw.c
+++ b/lib/ZFmtSmRaw.c
@@ -16,10 +16,10 @@ static char rcsid_ZFormatRawNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZFormatSmallRawNotice(notice, buffer, ret_len)
- ZNotice_t *notice;
- ZPacket_t buffer;
- int *ret_len;
+Code_t
+ZFormatSmallRawNotice(ZNotice_t *notice,
+ ZPacket_t buffer,
+ int *ret_len)
{
Code_t retval;
int hdrlen;
@@ -38,10 +38,10 @@ Code_t ZFormatSmallRawNotice(notice, buffer, ret_len)
return (ZERR_NONE);
}
-Code_t ZNewFormatSmallRawNotice(notice, buffer, ret_len)
- ZNotice_t *notice;
- ZPacket_t buffer;
- int *ret_len;
+Code_t
+ZNewFormatSmallRawNotice(ZNotice_t *notice,
+ ZPacket_t buffer,
+ int *ret_len)
{
Code_t retval;
int hdrlen;
diff --git a/lib/ZFreeNot.c b/lib/ZFreeNot.c
index f5ce360..355d0e3 100644
--- a/lib/ZFreeNot.c
+++ b/lib/ZFreeNot.c
@@ -16,8 +16,8 @@ static char rcsid_ZFreeNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZFreeNotice(notice)
- ZNotice_t *notice;
+Code_t
+ZFreeNotice(ZNotice_t *notice)
{
free(notice->z_packet);
return 0;
diff --git a/lib/ZGetLocs.c b/lib/ZGetLocs.c
index d32d53c..cbc07fb 100644
--- a/lib/ZGetLocs.c
+++ b/lib/ZGetLocs.c
@@ -18,9 +18,9 @@ static char rcsid_ZGetLocations_c[] = "$Id$";
#define min(a,b) ((a)<(b)?(a):(b))
-Code_t ZGetLocations(location, numlocs)
- ZLocations_t *location;
- int *numlocs;
+Code_t
+ZGetLocations(ZLocations_t *location,
+ int *numlocs)
{
int i;
diff --git a/lib/ZGetSender.c b/lib/ZGetSender.c
index f62619d..09ca742 100644
--- a/lib/ZGetSender.c
+++ b/lib/ZGetSender.c
@@ -19,7 +19,8 @@ static const char rcsid_ZGetSender_c[] =
#include <pwd.h>
-char *ZGetSender()
+char *
+ZGetSender(void)
{
struct passwd *pw;
static char *sender = NULL;
diff --git a/lib/ZGetSubs.c b/lib/ZGetSubs.c
index b0c29b1..a762262 100644
--- a/lib/ZGetSubs.c
+++ b/lib/ZGetSubs.c
@@ -18,9 +18,9 @@ static char rcsid_ZGetSubscriptions_c[] = "$Id$";
#define min(a,b) ((a)<(b)?(a):(b))
-Code_t ZGetSubscriptions(subscription, numsubs)
- ZSubscription_t *subscription;
- int *numsubs;
+Code_t
+ZGetSubscriptions(ZSubscription_t *subscription,
+ int *numsubs)
{
int i;
diff --git a/lib/ZGetWGPort.c b/lib/ZGetWGPort.c
index 8f8fcc9..ad3b483 100644
--- a/lib/ZGetWGPort.c
+++ b/lib/ZGetWGPort.c
@@ -16,7 +16,8 @@ static char rcsid_ZGetWGPort_c[] = "$Id$";
#include <internal.h>
-int ZGetWGPort()
+int
+ZGetWGPort(void)
{
char *envptr, name[128];
FILE *fp;
diff --git a/lib/ZIfNotice.c b/lib/ZIfNotice.c
index b42138e..a3652b5 100644
--- a/lib/ZIfNotice.c
+++ b/lib/ZIfNotice.c
@@ -16,11 +16,11 @@
static const char rcsid_ZIfNotice_c[] = "$Id$";
#endif
-Code_t ZIfNotice(notice, from, predicate, args)
- ZNotice_t *notice;
- struct sockaddr_in *from;
- int (*predicate) __P((ZNotice_t *, void *));
- void *args;
+Code_t
+ZIfNotice(ZNotice_t *notice,
+ struct sockaddr_in *from,
+ int (*predicate)(ZNotice_t *, void *),
+ void *args)
{
ZNotice_t tmpnotice;
Code_t retval;
diff --git a/lib/ZInit.c b/lib/ZInit.c
index 16d266e..d14543c 100644
--- a/lib/ZInit.c
+++ b/lib/ZInit.c
@@ -32,7 +32,8 @@ static char rcsid_ZInitialize_c[] =
#define INADDR_NONE 0xffffffff
#endif
-Code_t ZInitialize()
+Code_t
+ZInitialize(void)
{
struct servent *hmserv;
struct hostent *hostent;
diff --git a/lib/ZLocations.c b/lib/ZLocations.c
index e157342..9b580bc 100644
--- a/lib/ZLocations.c
+++ b/lib/ZLocations.c
@@ -23,9 +23,9 @@ static char rcsid_ZLocations_c[] =
static char host[MAXHOSTNAMELEN], mytty[MAXPATHLEN];
static int location_info_set = 0;
-Code_t ZInitLocationInfo(hostname, tty)
- char *hostname;
- char *tty;
+Code_t
+ZInitLocationInfo(char *hostname,
+ char *tty)
{
char *ttyp, *p;
struct hostent *hent;
@@ -56,26 +56,28 @@ Code_t ZInitLocationInfo(hostname, tty)
return (ZERR_NONE);
}
-Code_t ZSetLocation(exposure)
- char *exposure;
+Code_t
+ZSetLocation(char *exposure)
{
return (Z_SendLocation(LOGIN_CLASS, exposure, ZAUTH,
"$sender logged in to $1 on $3 at $2"));
}
-Code_t ZUnsetLocation()
+Code_t
+ZUnsetLocation(void)
{
return (Z_SendLocation(LOGIN_CLASS, LOGIN_USER_LOGOUT, ZNOAUTH,
"$sender logged out of $1 on $3 at $2"));
}
-Code_t ZFlushMyLocations()
+Code_t
+ZFlushMyLocations(void)
{
return (Z_SendLocation(LOGIN_CLASS, LOGIN_USER_FLUSH, ZAUTH, ""));
}
-char *ZParseExposureLevel(text)
- char *text;
+char *
+ZParseExposureLevel(char *text)
{
if (!strcasecmp(text, EXPOSE_NONE))
return (EXPOSE_NONE);
@@ -93,11 +95,11 @@ char *ZParseExposureLevel(text)
return(NULL);
}
-Code_t Z_SendLocation(class, opcode, auth, format)
- char *class;
- char *opcode;
- Z_AuthProc auth;
- char *format;
+Code_t
+Z_SendLocation(char *class,
+ char *opcode,
+ Z_AuthProc auth,
+ char *format)
{
int retval;
time_t ourtime;
diff --git a/lib/ZMakeAscii.c b/lib/ZMakeAscii.c
index d188536..cd0e24b 100644
--- a/lib/ZMakeAscii.c
+++ b/lib/ZMakeAscii.c
@@ -19,11 +19,11 @@ static const char rcsid_ZMakeAscii_c[] = "$Id$";
static char *itox_chars = "0123456789ABCDEF";
-Code_t ZMakeAscii(ptr, len, field, num)
- register char *ptr;
- int len;
- unsigned char *field;
- int num;
+Code_t
+ZMakeAscii(register char *ptr,
+ int len,
+ unsigned char *field,
+ int num)
{
int i;
@@ -52,10 +52,10 @@ Code_t ZMakeAscii(ptr, len, field, num)
return ZERR_NONE;
}
-Code_t ZMakeAscii32(ptr, len, value)
- register char *ptr;
- int len;
- unsigned long value;
+Code_t
+ZMakeAscii32(register char *ptr,
+ int len,
+ unsigned long value)
{
if (len < 11)
return ZERR_FIELDLEN;
@@ -73,10 +73,10 @@ Code_t ZMakeAscii32(ptr, len, value)
return ZERR_NONE;
}
-Code_t ZMakeAscii16(ptr, len, value)
- register char *ptr;
- int len;
- unsigned int value;
+Code_t
+ZMakeAscii16(register char *ptr,
+ int len,
+ unsigned int value)
{
if (len < 7)
return ZERR_FIELDLEN;
diff --git a/lib/ZMakeZcode.c b/lib/ZMakeZcode.c
index 6229bef..85c6f9d 100644
--- a/lib/ZMakeZcode.c
+++ b/lib/ZMakeZcode.c
@@ -17,10 +17,10 @@
static const char rcsid_ZMakeZcode_c[] = "$Id$";
#endif
-Code_t ZMakeZcode32(ptr, len, val)
- char *ptr;
- int len;
- unsigned long val;
+Code_t
+ZMakeZcode32(char *ptr,
+ int len,
+ unsigned long val)
{
unsigned char buf[4];
buf[0] = (val >> 24) & 0xff;
@@ -30,11 +30,11 @@ Code_t ZMakeZcode32(ptr, len, val)
return ZMakeZcode(ptr, len, buf, 4);
}
-Code_t ZMakeZcode(ptr, len, field, num)
- register char *ptr;
- int len;
- unsigned char *field;
- int num;
+Code_t
+ZMakeZcode(register char *ptr,
+ int len,
+ unsigned char *field,
+ int num)
{
int i;
diff --git a/lib/ZMkAuth.c b/lib/ZMkAuth.c
index 92d0bd3..468bc05 100644
--- a/lib/ZMkAuth.c
+++ b/lib/ZMkAuth.c
@@ -24,15 +24,17 @@ static const char rcsid_ZMakeAuthentication_c[] = "$Id$";
#define krb5_free_data(ctx, dat) free((dat)->data)
#endif
-Code_t ZResetAuthentication () {
+Code_t
+ZResetAuthentication(void)
+{
return ZERR_NONE;
}
-Code_t ZMakeAuthentication(notice, buffer, buffer_len, len)
- register ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *len;
+Code_t
+ZMakeAuthentication(register ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *len)
{
#if 1
return ZMakeZcodeAuthentication(notice, buffer, buffer_len, len/*?XXX*/);
@@ -119,23 +121,22 @@ Code_t ZMakeAuthentication(notice, buffer, buffer_len, len)
#endif
}
-Code_t ZMakeZcodeAuthentication(notice, buffer, buffer_len, phdr_len)
- register ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *phdr_len;
+Code_t
+ZMakeZcodeAuthentication(register ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *phdr_len)
{
return ZMakeZcodeRealmAuthentication(notice, buffer, buffer_len, phdr_len,
__Zephyr_realm);
}
-Code_t ZMakeZcodeRealmAuthentication(notice, buffer, buffer_len, phdr_len,
- realm)
- register ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *phdr_len;
- char *realm;
+Code_t
+ZMakeZcodeRealmAuthentication(register ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *phdr_len,
+ char *realm)
{
#ifdef HAVE_KRB5
krb5_error_code result;
@@ -221,11 +222,16 @@ Code_t ZMakeZcodeRealmAuthentication(notice, buffer, buffer_len, phdr_len,
}
#ifdef HAVE_KRB5
-int ZGetCreds(krb5_creds **creds_out) {
+int
+ZGetCreds(krb5_creds **creds_out)
+{
return ZGetCredsRealm(creds_out, __Zephyr_realm);
}
-int ZGetCredsRealm(krb5_creds **creds_out, char *realm) {
+int
+ZGetCredsRealm(krb5_creds **creds_out,
+ char *realm)
+{
krb5_creds creds_in;
krb5_ccache ccache; /* XXX make this a global or static?*/
int result;
diff --git a/lib/ZNewLocU.c b/lib/ZNewLocU.c
index 9ad620d..c598c26 100644
--- a/lib/ZNewLocU.c
+++ b/lib/ZNewLocU.c
@@ -17,10 +17,10 @@ static const char rcsid_ZNewLocateUser_c[] =
"$Id$";
#endif
-Code_t ZLocateUser(user, nlocs, auth)
- char *user;
- int *nlocs;
- Z_AuthProc auth;
+Code_t
+ZLocateUser(char *user,
+ int *nlocs,
+ Z_AuthProc auth)
{
Code_t retval;
ZNotice_t notice;
diff --git a/lib/ZOpenPort.c b/lib/ZOpenPort.c
index 75cec22..44bf871 100644
--- a/lib/ZOpenPort.c
+++ b/lib/ZOpenPort.c
@@ -17,8 +17,8 @@ static char rcsid_ZOpenPort_c[] = "$Id$";
#include <internal.h>
#include <sys/socket.h>
-Code_t ZOpenPort(port)
- u_short *port;
+Code_t
+ZOpenPort(u_short *port)
{
struct sockaddr_in bindin;
int len;
diff --git a/lib/ZParseNot.c b/lib/ZParseNot.c
index a198845..7202c47 100644
--- a/lib/ZParseNot.c
+++ b/lib/ZParseNot.c
@@ -18,8 +18,9 @@ static char rcsid_ZParseNotice_c[] =
#include <internal.h>
/* Skip to the next NUL-terminated field in the packet. */
-static char *next_field(ptr, end)
- char *ptr, *end;
+static char *
+next_field(char *ptr,
+ char *end)
{
while (ptr < end && *ptr != '\0')
ptr++;
@@ -28,10 +29,10 @@ static char *next_field(ptr, end)
return (ptr);
}
-Code_t ZParseNotice(buffer, len, notice)
- char *buffer;
- int len;
- ZNotice_t *notice;
+Code_t
+ZParseNotice(char *buffer,
+ int len,
+ ZNotice_t *notice)
{
char *ptr, *end;
unsigned long temp;
diff --git a/lib/ZPeekIfNot.c b/lib/ZPeekIfNot.c
index b63b57c..bd643f8 100644
--- a/lib/ZPeekIfNot.c
+++ b/lib/ZPeekIfNot.c
@@ -16,11 +16,11 @@ static char rcsid_ZPeekIfNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZPeekIfNotice(notice, from, predicate, args)
- ZNotice_t *notice;
- struct sockaddr_in *from;
- int (*predicate)();
- char *args;
+Code_t
+ZPeekIfNotice(ZNotice_t *notice,
+ struct sockaddr_in *from,
+ int (*predicate)(ZNotice_t *, char *),
+ char *args)
{
ZNotice_t tmpnotice;
Code_t retval;
diff --git a/lib/ZPeekNot.c b/lib/ZPeekNot.c
index f97e855..679382e 100644
--- a/lib/ZPeekNot.c
+++ b/lib/ZPeekNot.c
@@ -16,9 +16,9 @@ static char rcsid_ZPeekNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZPeekNotice(notice, from)
- ZNotice_t *notice;
- struct sockaddr_in *from;
+Code_t
+ZPeekNotice(ZNotice_t *notice,
+ struct sockaddr_in *from)
{
char *buffer;
int len;
diff --git a/lib/ZPeekPkt.c b/lib/ZPeekPkt.c
index 2d93758..6b89f9e 100644
--- a/lib/ZPeekPkt.c
+++ b/lib/ZPeekPkt.c
@@ -16,10 +16,10 @@ static char rcsid_ZPeekPacket_c[] = "$Id$";
#include <internal.h>
-Code_t ZPeekPacket(buffer, ret_len, from)
- char **buffer;
- int *ret_len;
- struct sockaddr_in *from;
+Code_t
+ZPeekPacket(char **buffer,
+ int *ret_len,
+ struct sockaddr_in *from)
{
Code_t retval;
struct _Z_InputQ *nextq;
diff --git a/lib/ZPending.c b/lib/ZPending.c
index 05c8ba0..b6cd537 100644
--- a/lib/ZPending.c
+++ b/lib/ZPending.c
@@ -16,7 +16,8 @@ static char rcsid_ZPending_c[] = "$Id$";
#include <internal.h>
-int ZPending()
+int
+ZPending(void)
{
int retval;
diff --git a/lib/ZReadAscii.c b/lib/ZReadAscii.c
index 53037cb..ee45b9c 100644
--- a/lib/ZReadAscii.c
+++ b/lib/ZReadAscii.c
@@ -34,11 +34,11 @@ Z_cnvt_xtoi (char c)
#define Z_cnvt_xtoi(c) ((temp=(c)-'0'),(temp<10)?temp:((temp-='A'-'9'-1),(temp<16)?temp:-1))
-Code_t ZReadAscii(ptr, len, field, num)
- char *ptr;
- int len;
- unsigned char *field;
- int num;
+Code_t
+ZReadAscii(char *ptr,
+ int len,
+ unsigned char *field,
+ int num)
{
int i;
unsigned int hexbyte;
@@ -71,10 +71,10 @@ Code_t ZReadAscii(ptr, len, field, num)
return *ptr ? ZERR_BADFIELD : ZERR_NONE;
}
-Code_t ZReadAscii32(ptr, len, value_ptr)
- char *ptr;
- int len;
- unsigned long *value_ptr;
+Code_t
+ZReadAscii32(char *ptr,
+ int len,
+ unsigned long *value_ptr)
{
unsigned char buf[4];
Code_t retval;
@@ -86,10 +86,10 @@ Code_t ZReadAscii32(ptr, len, value_ptr)
return ZERR_NONE;
}
-Code_t ZReadAscii16(ptr, len, value_ptr)
- char *ptr;
- int len;
- unsigned short *value_ptr;
+Code_t
+ZReadAscii16(char *ptr,
+ int len,
+ unsigned short *value_ptr)
{
unsigned char buf[2];
Code_t retval;
diff --git a/lib/ZReadZcode.c b/lib/ZReadZcode.c
index ed3a283..93d651d 100644
--- a/lib/ZReadZcode.c
+++ b/lib/ZReadZcode.c
@@ -20,7 +20,10 @@ static char rcsid_ZReadZcode_c[] = "$Id$";
#if 0
Code_t
-ZReadAsciiOrZcode(char *buf, int buflen, unsigned char *data, int datalen)
+ZReadAsciiOrZcode(char *buf,
+ int buflen,
+ unsigned char *data,
+ int datalen)
{
if (buf[0] == 'Z')
return ZReadZcode(buf, buflen, data, datalen);
@@ -28,19 +31,19 @@ ZReadAsciiOrZcode(char *buf, int buflen, unsigned char *data, int datalen)
return ZReadAscii(buf, buflen, data, datalen);
}
-Code_t ZReadZcode32(ptr, value_ptr)
- unsigned char *ptr;
- unsigned long *value_ptr;
+Code_t
+ZReadZcode32(unsigned char *ptr,
+ unsigned long *value_ptr)
{
abort();
}
#endif
-Code_t ZReadZcode(ptr, field, max, len)
- unsigned char *ptr;
- unsigned char *field;
- int max;
- int *len;
+Code_t
+ZReadZcode(unsigned char *ptr,
+ unsigned char *field,
+ int max,
+ int *len)
{
int n = 0;
diff --git a/lib/ZRecvNot.c b/lib/ZRecvNot.c
index 27cba29..b6bc442 100644
--- a/lib/ZRecvNot.c
+++ b/lib/ZRecvNot.c
@@ -16,9 +16,9 @@ static char rcsid_ZReceiveNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZReceiveNotice(notice, from)
- ZNotice_t *notice;
- struct sockaddr_in *from;
+Code_t
+ZReceiveNotice(ZNotice_t *notice,
+ struct sockaddr_in *from)
{
char *buffer;
struct _Z_InputQ *nextq;
diff --git a/lib/ZRecvPkt.c b/lib/ZRecvPkt.c
index 5937934..467268e 100644
--- a/lib/ZRecvPkt.c
+++ b/lib/ZRecvPkt.c
@@ -16,10 +16,10 @@ static char rcsid_ZReceivePacket_c[] = "$Id$";
#include <internal.h>
-Code_t ZReceivePacket(buffer, ret_len, from)
- ZPacket_t buffer;
- int *ret_len;
- struct sockaddr_in *from;
+Code_t
+ZReceivePacket(ZPacket_t buffer,
+ int *ret_len,
+ struct sockaddr_in *from)
{
Code_t retval;
struct _Z_InputQ *nextq;
diff --git a/lib/ZRetSubs.c b/lib/ZRetSubs.c
index bd2cf5d..9926171 100644
--- a/lib/ZRetSubs.c
+++ b/lib/ZRetSubs.c
@@ -18,16 +18,12 @@ static const char rcsid_ZRetrieveSubscriptions_c[] =
"$Id$";
#endif
-static Code_t Z_RetSubs ();
+static Code_t Z_RetSubs (register ZNotice_t *, int *, Z_AuthProc);
/* Need STDC definition when possible for unsigned short argument. */
-#ifdef __STDC__
-Code_t ZRetrieveSubscriptions(unsigned short port, int *nsubs)
-#else
-Code_t ZRetrieveSubscriptions(port,nsubs)
- unsigned short port;
- int *nsubs;
-#endif
+Code_t
+ZRetrieveSubscriptions(unsigned short port,
+ int *nsubs)
{
int retval;
ZNotice_t notice;
@@ -48,8 +44,8 @@ Code_t ZRetrieveSubscriptions(port,nsubs)
return(Z_RetSubs(&notice, nsubs, ZAUTH));
}
-Code_t ZRetrieveDefaultSubscriptions(nsubs)
- int *nsubs;
+Code_t
+ZRetrieveDefaultSubscriptions(int *nsubs)
{
ZNotice_t notice;
@@ -62,10 +58,10 @@ Code_t ZRetrieveDefaultSubscriptions(nsubs)
}
-static Code_t Z_RetSubs(notice, nsubs, auth_routine)
- register ZNotice_t *notice;
- int *nsubs;
- Z_AuthProc auth_routine;
+static Code_t
+Z_RetSubs(register ZNotice_t *notice,
+ int *nsubs,
+ Z_AuthProc auth_routine)
{
register int i;
int retval,nrecv,gimmeack;
diff --git a/lib/ZSendList.c b/lib/ZSendList.c
index 323bb5d..27176fa 100644
--- a/lib/ZSendList.c
+++ b/lib/ZSendList.c
@@ -16,21 +16,20 @@ static char rcsid_ZSendList_c[] = "$Id$";
#include <internal.h>
-Code_t ZSendList(notice, list, nitems, cert_routine)
- ZNotice_t *notice;
- char *list[];
- int nitems;
- Z_AuthProc cert_routine;
+Code_t ZSendList(ZNotice_t *notice,
+ char *list[],
+ int nitems,
+ Z_AuthProc cert_routine)
{
return(ZSrvSendList(notice, list, nitems, cert_routine, Z_XmitFragment));
}
-Code_t ZSrvSendList(notice, list, nitems, cert_routine, send_routine)
- ZNotice_t *notice;
- char *list[];
- int nitems;
- Z_AuthProc cert_routine;
- Code_t (*send_routine)();
+Code_t
+ZSrvSendList(ZNotice_t *notice,
+ char *list[],
+ int nitems,
+ Z_AuthProc cert_routine,
+ Code_t (*send_routine)(ZNotice_t *, char *, int, int))
{
Code_t retval;
ZNotice_t newnotice;
diff --git a/lib/ZSendNot.c b/lib/ZSendNot.c
index 4f3b996..9f59fd3 100644
--- a/lib/ZSendNot.c
+++ b/lib/ZSendNot.c
@@ -16,17 +16,17 @@ static char rcsid_ZSendNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZSendNotice(notice, cert_routine)
- ZNotice_t *notice;
- Z_AuthProc cert_routine;
+Code_t
+ZSendNotice(ZNotice_t *notice,
+ Z_AuthProc cert_routine)
{
return(ZSrvSendNotice(notice, cert_routine, Z_XmitFragment));
}
-Code_t ZSrvSendNotice(notice, cert_routine, send_routine)
- ZNotice_t *notice;
- Z_AuthProc cert_routine;
- Code_t (*send_routine)();
+Code_t
+ZSrvSendNotice(ZNotice_t *notice,
+ Z_AuthProc cert_routine,
+ Code_t (*send_routine)(ZNotice_t *, char *, int, int))
{
Code_t retval;
ZNotice_t newnotice;
diff --git a/lib/ZSendPkt.c b/lib/ZSendPkt.c
index 66a2572..e542c79 100644
--- a/lib/ZSendPkt.c
+++ b/lib/ZSendPkt.c
@@ -18,12 +18,12 @@ static char rcsid_ZSendPacket_c[] =
#include <internal.h>
#include <sys/socket.h>
-static int wait_for_hmack();
+static int wait_for_hmack(ZNotice_t *, void *);
-Code_t ZSendPacket(packet, len, waitforack)
- char *packet;
- int len;
- int waitforack;
+Code_t
+ZSendPacket(char *packet,
+ int len,
+ int waitforack)
{
Code_t retval;
struct sockaddr_in dest;
@@ -51,8 +51,8 @@ Code_t ZSendPacket(packet, len, waitforack)
if ((retval = ZParseNotice(packet, len, &notice)) != ZERR_NONE)
return (retval);
- retval = Z_WaitForNotice (&acknotice, wait_for_hmack, &notice.z_uid,
- HM_TIMEOUT);
+ retval = Z_WaitForNotice(&acknotice, wait_for_hmack, &notice.z_uid,
+ HM_TIMEOUT);
if (retval == ETIMEDOUT)
return ZERR_HMDEAD;
if (retval == ZERR_NONE)
@@ -60,9 +60,9 @@ Code_t ZSendPacket(packet, len, waitforack)
return retval;
}
-static int wait_for_hmack(notice, uid)
- ZNotice_t *notice;
- ZUnique_Id_t *uid;
+static int
+wait_for_hmack(ZNotice_t *notice,
+ void *uid)
{
- return (notice->z_kind == HMACK && ZCompareUID(&notice->z_uid, uid));
+ return (notice->z_kind == HMACK && ZCompareUID(&notice->z_uid, (ZUnique_Id_t *)uid));
}
diff --git a/lib/ZSendRLst.c b/lib/ZSendRLst.c
index 56f282e..d4d6b7d 100644
--- a/lib/ZSendRLst.c
+++ b/lib/ZSendRLst.c
@@ -16,19 +16,17 @@ static char rcsid_ZSendRawList_c[] = "$Id$";
#include <internal.h>
-Code_t ZSendRawList(notice, list, nitems)
- ZNotice_t *notice;
- char *list[];
- int nitems;
+Code_t ZSendRawList(ZNotice_t *notice,
+ char *list[],
+ int nitems)
{
return(ZSrvSendRawList(notice, list, nitems, Z_XmitFragment));
}
-Code_t ZSrvSendRawList(notice, list, nitems, send_routine)
- ZNotice_t *notice;
- char *list[];
- int nitems;
- Code_t (*send_routine)();
+Code_t ZSrvSendRawList(ZNotice_t *notice,
+ char *list[],
+ int nitems,
+ Code_t (*send_routine)(ZNotice_t *, char *, int, int))
{
Code_t retval;
ZNotice_t newnotice;
diff --git a/lib/ZSendRaw.c b/lib/ZSendRaw.c
index 2ea95d1..1cd0438 100644
--- a/lib/ZSendRaw.c
+++ b/lib/ZSendRaw.c
@@ -16,8 +16,8 @@ static char rcsid_ZSendRawNotice_c[] = "$Id$";
#include <internal.h>
-Code_t ZSendRawNotice(notice)
- ZNotice_t *notice;
+Code_t
+ZSendRawNotice(ZNotice_t *notice)
{
Code_t retval;
ZNotice_t newnotice;
diff --git a/lib/ZSetDest.c b/lib/ZSetDest.c
index 7190dcd..23f75de 100644
--- a/lib/ZSetDest.c
+++ b/lib/ZSetDest.c
@@ -16,8 +16,8 @@ static char rcsid_ZSetDestAddr_c[] = "$Id$";
#include <internal.h>
-Code_t ZSetDestAddr(addr)
- struct sockaddr_in *addr;
+Code_t
+ZSetDestAddr(struct sockaddr_in *addr)
{
__HM_addr = *addr;
diff --git a/lib/ZSetFD.c b/lib/ZSetFD.c
index c22f66f..be16f65 100644
--- a/lib/ZSetFD.c
+++ b/lib/ZSetFD.c
@@ -16,8 +16,8 @@ static char rcsid_ZSetFD_c[] = "$Id$";
#include <internal.h>
-Code_t ZSetFD(fd)
- int fd;
+Code_t
+ZSetFD(int fd)
{
(void) ZClosePort();
diff --git a/lib/ZSetSrv.c b/lib/ZSetSrv.c
index 3f7d873..8b273e1 100644
--- a/lib/ZSetSrv.c
+++ b/lib/ZSetSrv.c
@@ -16,8 +16,8 @@ static char rcsid_ZSetServerState_c[] = "$Id$";
#include <internal.h>
-Code_t ZSetServerState(state)
- int state;
+Code_t
+ZSetServerState(int state)
{
__Zephyr_server = state;
diff --git a/lib/ZSubs.c b/lib/ZSubs.c
index 15a5a91..e8519fe 100644
--- a/lib/ZSubs.c
+++ b/lib/ZSubs.c
@@ -17,39 +17,39 @@
static const char rcsid_ZSubscriptions_c[] = "$Id$";
#endif
-static Code_t Z_Subscriptions __P((register ZSubscription_t *sublist,
- int nitems, unsigned int port,
- char *opcode, int authit));
-static Code_t subscr_sendoff __P((ZNotice_t *notice, char **lyst, int num,
- int authit));
-
-Code_t ZSubscribeTo(sublist, nitems, port)
- ZSubscription_t *sublist;
- int nitems;
- unsigned int port;
+static Code_t Z_Subscriptions(register ZSubscription_t *sublist,
+ int nitems, unsigned int port,
+ char *opcode, int authit);
+static Code_t subscr_sendoff(ZNotice_t *notice, char **lyst, int num,
+ int authit);
+
+Code_t
+ZSubscribeTo(ZSubscription_t *sublist,
+ int nitems,
+ unsigned int port)
{
return (Z_Subscriptions(sublist, nitems, port, CLIENT_SUBSCRIBE, 1));
}
-Code_t ZSubscribeToSansDefaults(sublist, nitems, port)
- ZSubscription_t *sublist;
- int nitems;
- unsigned int port;
+Code_t
+ZSubscribeToSansDefaults(ZSubscription_t *sublist,
+ int nitems,
+ unsigned int port)
{
return (Z_Subscriptions(sublist, nitems, port, CLIENT_SUBSCRIBE_NODEFS,
1));
}
-Code_t ZUnsubscribeTo(sublist, nitems, port)
- ZSubscription_t *sublist;
- int nitems;
- unsigned int port;
+Code_t
+ZUnsubscribeTo(ZSubscription_t *sublist,
+ int nitems,
+ unsigned int port)
{
return (Z_Subscriptions(sublist, nitems, port, CLIENT_UNSUBSCRIBE, 1));
}
-Code_t ZCancelSubscriptions(port)
- unsigned int port;
+Code_t
+ZCancelSubscriptions(unsigned int port)
{
return (Z_Subscriptions((ZSubscription_t *)0, 0, port,
CLIENT_CANCELSUB, 0));
@@ -62,12 +62,11 @@ Code_t ZCancelSubscriptions(port)
*/
static Code_t
-Z_Subscriptions(sublist, nitems, port, opcode, authit)
- register ZSubscription_t *sublist;
- int nitems;
- unsigned int port;
- char *opcode;
- int authit;
+Z_Subscriptions(register ZSubscription_t *sublist,
+ int nitems,
+ unsigned int port,
+ char *opcode,
+ int authit)
{
register int i, j;
int retval;
@@ -167,11 +166,10 @@ Z_Subscriptions(sublist, nitems, port, opcode, authit)
}
static Code_t
-subscr_sendoff(notice, lyst, num, authit)
-ZNotice_t *notice;
-char **lyst;
-int num;
-int authit;
+subscr_sendoff(ZNotice_t *notice,
+ char **lyst,
+ int num,
+ int authit)
{
register Code_t retval;
ZNotice_t retnotice;
diff --git a/lib/ZVariables.c b/lib/ZVariables.c
index 7352860..56e13da 100644
--- a/lib/ZVariables.c
+++ b/lib/ZVariables.c
@@ -20,15 +20,14 @@ static char rcsid_ZVariables_c[] = "$Id$";
#include <ctype.h>
#include <pwd.h>
-static int get_localvarfile __P((char *bfr));
-static char *get_varval __P((char *fn, char *val));
-static int varline __P((char *bfr, char *var));
+static int get_localvarfile(char *bfr);
+static char *get_varval(char *fn, char *val);
+static int varline(char *bfr, char *var);
-char *ZGetVariable(var)
- char *var;
+char *
+ZGetVariable(char *var)
{
char varfile[128], *ret;
- char *get_varval();
if (get_localvarfile(varfile))
return ((char *)0);
@@ -40,9 +39,8 @@ char *ZGetVariable(var)
return (get_varval(varfile, var));
}
-Code_t ZSetVariable(var, value)
- char *var;
- char *value;
+Code_t
+ZSetVariable(char *var, char *value)
{
int written;
FILE *fpin, *fpout;
@@ -80,8 +78,8 @@ Code_t ZSetVariable(var, value)
return (ZERR_NONE);
}
-Code_t ZUnsetVariable(var)
- char *var;
+Code_t
+ZUnsetVariable(char *var)
{
FILE *fpin, *fpout;
char varfile[128], varfilebackup[128], varbfr[512];
@@ -110,8 +108,8 @@ Code_t ZUnsetVariable(var)
return (ZERR_NONE);
}
-static int get_localvarfile(bfr)
- char *bfr;
+static int
+get_localvarfile(char *bfr)
{
char *envptr;
struct passwd *pwd;
@@ -137,9 +135,8 @@ static int get_localvarfile(bfr)
return (0);
}
-static char *get_varval(fn, var)
- char *fn;
- char *var;
+static char *
+get_varval(char *fn, char *var)
{
FILE *fp;
static char varbfr[512];
@@ -163,9 +160,8 @@ static char *get_varval(fn, var)
/* If the variable in the line bfr[] is the same as var, return index to
the variable value, else return 0. */
-static int varline(bfr, var)
- char *bfr;
- char *var;
+static int
+varline(char *bfr, char *var)
{
register char *cp;
diff --git a/lib/ZWait4Not.c b/lib/ZWait4Not.c
index 2313e2e..c30dd06 100644
--- a/lib/ZWait4Not.c
+++ b/lib/ZWait4Not.c
@@ -20,11 +20,11 @@ static char rcsid_ZWaitForNotice_c[] = "$Id$";
#include <internal.h>
#include <sys/socket.h>
-Code_t Z_WaitForNotice (notice, pred, arg, timeout)
- ZNotice_t *notice;
- int (*pred) __P((ZNotice_t *, void *));
- void *arg;
- int timeout;
+Code_t
+Z_WaitForNotice(ZNotice_t *notice,
+ int (*pred) __P((ZNotice_t *, void *)),
+ void *arg,
+ int timeout)
{
Code_t retval;
struct timeval tv, t0;
diff --git a/lib/ZhmStat.c b/lib/ZhmStat.c
index 916db54..f6e764c 100644
--- a/lib/ZhmStat.c
+++ b/lib/ZhmStat.c
@@ -17,9 +17,9 @@
#define INADDR_LOOPBACK 0x7f000001
#endif
-Code_t ZhmStat(hostaddr, notice)
- struct in_addr *hostaddr;
- ZNotice_t *notice;
+Code_t
+ZhmStat(struct in_addr *hostaddr,
+ ZNotice_t *notice)
{
struct servent *sp;
struct sockaddr_in sin;
diff --git a/lib/Zinternal.c b/lib/Zinternal.c
index 169eb67..3398a4c 100644
--- a/lib/Zinternal.c
+++ b/lib/Zinternal.c
@@ -23,8 +23,6 @@ static const char copyright[] =
"Copyright (c) 1987,1988,1991 by the Massachusetts Institute of Technology.";
#endif
-extern char *inet_ntoa ();
-
int __Zephyr_fd = -1;
int __Zephyr_open;
int __Zephyr_port = -1;
@@ -84,7 +82,9 @@ static struct cksum_map_s {
};
#define N_CKSUM_MAP (sizeof(cksum_map) / sizeof(struct cksum_map_s))
-Code_t Z_krb5_lookup_cksumtype(krb5_enctype e, krb5_cksumtype *c)
+Code_t
+Z_krb5_lookup_cksumtype(krb5_enctype e,
+ krb5_cksumtype *c)
{
int i;
@@ -101,25 +101,25 @@ Code_t Z_krb5_lookup_cksumtype(krb5_enctype e, krb5_cksumtype *c)
char __Zephyr_realm[REALM_SZ];
#ifdef Z_DEBUG
-void (*__Z_debug_print) __P((const char *fmt, va_list args, void *closure));
+void (*__Z_debug_print)(const char *fmt, va_list args, void *closure);
void *__Z_debug_print_closure;
#endif
#define min(a,b) ((a)<(b)?(a):(b))
-static int Z_AddField __P((char **ptr, char *field, char *end));
-static int find_or_insert_uid __P((ZUnique_Id_t *uid, ZNotice_Kind_t kind));
-static Code_t Z_ZcodeFormatRawHeader __P((ZNotice_t *, char *, int, int *, char **,
- int *, char **, char **, int cksumtype));
+static int Z_AddField(char **ptr, char *field, char *end);
+static int find_or_insert_uid(ZUnique_Id_t *uid, ZNotice_Kind_t kind);
+static Code_t Z_ZcodeFormatRawHeader(ZNotice_t *, char *, int, int *, char **,
+ int *, char **, char **, int cksumtype);
/* Find or insert uid in the old uids buffer. The buffer is a sorted
* circular queue. We make the assumption that most packets arrive in
* order, so we can usually search for a uid or insert it into the buffer
* by looking back just a few entries from the end. Since this code is
* only executed by the client, the implementation isn't microoptimized. */
-static int find_or_insert_uid(uid, kind)
- ZUnique_Id_t *uid;
- ZNotice_Kind_t kind;
+static int
+find_or_insert_uid(ZUnique_Id_t *uid,
+ ZNotice_Kind_t kind)
{
static struct _filter {
ZUnique_Id_t uid;
@@ -187,7 +187,8 @@ static int find_or_insert_uid(uid, kind)
/* Return 1 if there is a packet waiting, 0 otherwise */
-int Z_PacketWaiting()
+int
+Z_PacketWaiting(void)
{
struct timeval tv;
fd_set read;
@@ -201,7 +202,8 @@ int Z_PacketWaiting()
/* Wait for a complete notice to become available */
-Code_t Z_WaitForComplete()
+Code_t
+Z_WaitForComplete(void)
{
Code_t retval;
@@ -218,7 +220,8 @@ Code_t Z_WaitForComplete()
/* Read any available packets and enqueue them */
-Code_t Z_ReadEnqueue()
+Code_t
+Z_ReadEnqueue(void)
{
Code_t retval;
@@ -238,9 +241,9 @@ Code_t Z_ReadEnqueue()
* notices that haven't been touched in a while
*/
-struct _Z_InputQ *Z_SearchQueue(uid, kind)
- ZUnique_Id_t *uid;
- ZNotice_Kind_t kind;
+struct _Z_InputQ *
+Z_SearchQueue(ZUnique_Id_t *uid,
+ ZNotice_Kind_t kind)
{
register struct _Z_InputQ *qptr;
struct _Z_InputQ *next;
@@ -270,7 +273,8 @@ struct _Z_InputQ *Z_SearchQueue(uid, kind)
* returns.
*/
-Code_t Z_ReadWait()
+Code_t
+Z_ReadWait(void)
{
register struct _Z_InputQ *qptr;
ZNotice_t notice;
@@ -515,10 +519,10 @@ Code_t Z_ReadWait()
/* Fragment management routines - compliments, more or less, of RFC815 */
-Code_t Z_AddNoticeToEntry(qptr, notice, part)
- struct _Z_InputQ *qptr;
- ZNotice_t *notice;
- int part;
+Code_t
+Z_AddNoticeToEntry(struct _Z_InputQ *qptr,
+ ZNotice_t *notice,
+ int part)
{
int last, oldfirst, oldlast;
struct _Z_Hole *hole, *lasthole;
@@ -633,7 +637,9 @@ Code_t Z_AddNoticeToEntry(qptr, notice, part)
return (ZERR_NONE);
}
-void Z_gettimeofday(struct _ZTimeval *ztv, struct timezone *tz)
+void
+Z_gettimeofday(struct _ZTimeval *ztv,
+ struct timezone *tz)
{
struct timeval tv;
(void) gettimeofday(&tv, tz); /* yeah, yeah, I know */
@@ -641,12 +647,12 @@ void Z_gettimeofday(struct _ZTimeval *ztv, struct timezone *tz)
ztv->tv_usec=tv.tv_usec;
}
-Code_t Z_FormatHeader(notice, buffer, buffer_len, len, cert_routine)
- ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *len;
- Z_AuthProc cert_routine;
+Code_t
+Z_FormatHeader(ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *len,
+ Z_AuthProc cert_routine)
{
Code_t retval;
static char version[BUFSIZ]; /* default init should be all \0 */
@@ -686,12 +692,12 @@ Code_t Z_FormatHeader(notice, buffer, buffer_len, len, cert_routine)
return Z_FormatAuthHeader(notice, buffer, buffer_len, len, cert_routine);
}
-Code_t Z_NewFormatHeader(notice, buffer, buffer_len, len, cert_routine)
- ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *len;
- Z_AuthProc cert_routine;
+Code_t
+Z_NewFormatHeader(ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *len,
+ Z_AuthProc cert_routine)
{
Code_t retval;
static char version[BUFSIZ]; /* default init should be all \0 */
@@ -732,12 +738,12 @@ Code_t Z_NewFormatHeader(notice, buffer, buffer_len, len, cert_routine)
return Z_NewFormatAuthHeader(notice, buffer, buffer_len, len, cert_routine);
}
-Code_t Z_FormatAuthHeader(notice, buffer, buffer_len, len, cert_routine)
- ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *len;
- Z_AuthProc cert_routine;
+Code_t
+Z_FormatAuthHeader(ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *len,
+ Z_AuthProc cert_routine)
{
if (!cert_routine) {
notice->z_auth = 0;
@@ -749,14 +755,14 @@ Code_t Z_FormatAuthHeader(notice, buffer, buffer_len, len, cert_routine)
}
return ((*cert_routine)(notice, buffer, buffer_len, len));
-}
-
-Code_t Z_NewFormatAuthHeader(notice, buffer, buffer_len, len, cert_routine)
- ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *len;
- Z_AuthProc cert_routine;
+}
+
+Code_t
+Z_NewFormatAuthHeader(ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *len,
+ Z_AuthProc cert_routine)
{
if (!cert_routine) {
notice->z_auth = 0;
@@ -764,50 +770,50 @@ Code_t Z_NewFormatAuthHeader(notice, buffer, buffer_len, len, cert_routine)
notice->z_ascii_authent = "";
notice->z_checksum = 0;
return (Z_FormatRawHeader(notice, buffer, buffer_len,
- len, NULL, NULL));
+ len, NULL, NULL));
}
return ((*cert_routine)(notice, buffer, buffer_len, len));
}
-Code_t Z_NewFormatRawHeader(notice, buffer, buffer_len, hdr_len,
- cksum_start, cksum_len, cstart, cend)
- ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *hdr_len;
- char **cksum_start;
- int *cksum_len;
- char **cstart, **cend;
+Code_t
+Z_NewFormatRawHeader(ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *hdr_len,
+ char **cksum_start,
+ int *cksum_len,
+ char **cstart,
+ char **cend)
{
return(Z_ZcodeFormatRawHeader(notice, buffer, buffer_len, hdr_len,
cksum_start, cksum_len, cstart, cend, 0));
}
-Code_t Z_AsciiFormatRawHeader(notice, buffer, buffer_len, hdr_len,
- cksum_start, cksum_len, cstart, cend)
- ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *hdr_len;
- char **cksum_start;
- int *cksum_len;
- char **cstart, **cend;
+Code_t
+Z_AsciiFormatRawHeader(ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *hdr_len,
+ char **cksum_start,
+ int *cksum_len,
+ char **cstart,
+ char **cend)
{
return(Z_ZcodeFormatRawHeader(notice, buffer, buffer_len, hdr_len,
cksum_start, cksum_len, cstart, cend, 1));
}
-static Code_t Z_ZcodeFormatRawHeader(notice, buffer, buffer_len, hdr_len, cksum_start,
- cksum_len, cstart, cend, cksumstyle)
- ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *hdr_len;
- char **cksum_start;
- int *cksum_len;
- char **cstart, **cend;
- int cksumstyle;
+static Code_t
+Z_ZcodeFormatRawHeader(ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *hdr_len,
+ char **cksum_start,
+ int *cksum_len,
+ char **cstart,
+ char **cend,
+ int cksumstyle)
{
static char version_nogalaxy[BUFSIZ]; /* default init should be all \0 */
char newrecip[BUFSIZ];
@@ -955,12 +961,13 @@ static Code_t Z_ZcodeFormatRawHeader(notice, buffer, buffer_len, hdr_len, cksum_
return (ZERR_NONE);
}
-Code_t Z_FormatRawHeader(notice, buffer, buffer_len, len, cstart, cend)
- ZNotice_t *notice;
- char *buffer;
- int buffer_len;
- int *len;
- char **cstart, **cend;
+Code_t
+Z_FormatRawHeader(ZNotice_t *notice,
+ char *buffer,
+ int buffer_len,
+ int *len,
+ char **cstart,
+ char **cend)
{
char newrecip[BUFSIZ];
char *ptr, *end;
@@ -1068,8 +1075,9 @@ Code_t Z_FormatRawHeader(notice, buffer, buffer_len, len, cstart, cend)
}
static int
-Z_AddField(ptr, field, end)
- char **ptr, *field, *end;
+Z_AddField(char **ptr,
+ char *field,
+ char *end)
{
register int len;
@@ -1086,7 +1094,8 @@ Z_AddField(ptr, field, end)
return 0;
}
-struct _Z_InputQ *Z_GetFirstComplete()
+struct _Z_InputQ *
+Z_GetFirstComplete(void)
{
struct _Z_InputQ *qptr;
@@ -1101,8 +1110,8 @@ struct _Z_InputQ *Z_GetFirstComplete()
return ((struct _Z_InputQ *)0);
}
-struct _Z_InputQ *Z_GetNextComplete(qptr)
- struct _Z_InputQ *qptr;
+struct _Z_InputQ *
+Z_GetNextComplete(struct _Z_InputQ *qptr)
{
qptr = qptr->next;
while (qptr) {
@@ -1114,8 +1123,8 @@ struct _Z_InputQ *Z_GetNextComplete(qptr)
return ((struct _Z_InputQ *)0);
}
-void Z_RemQueue(qptr)
- struct _Z_InputQ *qptr;
+void
+Z_RemQueue(struct _Z_InputQ *qptr)
{
struct _Z_Hole *hole, *nexthole;
@@ -1163,11 +1172,11 @@ void Z_RemQueue(qptr)
return;
}
-Code_t Z_SendFragmentedNotice(notice, len, cert_func, send_func)
- ZNotice_t *notice;
- int len;
- Z_AuthProc cert_func;
- Z_SendProc send_func;
+Code_t
+Z_SendFragmentedNotice(ZNotice_t *notice,
+ int len,
+ Z_AuthProc cert_func,
+ Z_SendProc send_func)
{
ZNotice_t partnotice;
ZPacket_t buffer;
@@ -1219,13 +1228,12 @@ Code_t Z_SendFragmentedNotice(notice, len, cert_func, send_func)
}
/*ARGSUSED*/
-Code_t Z_XmitFragment(notice, buf, len, wait)
-ZNotice_t *notice;
-char *buf;
-int len;
-int wait;
+Code_t Z_XmitFragment(ZNotice_t *notice,
+ char *buf,
+ int len,
+ int wait)
{
- return(ZSendPacket(buf, len, wait));
+ return(ZSendPacket(buf, len, wait));
}
#ifdef Z_DEBUG
@@ -1239,8 +1247,8 @@ const char *const ZNoticeKinds[] = {
#ifdef Z_DEBUG
#undef Z_debug
-#ifdef HAVE_STDARG_H
-void Z_debug (const char *format, ...)
+void
+Z_debug(const char *format, ...)
{
va_list pvar;
if (!__Z_debug_print)
@@ -1249,24 +1257,11 @@ void Z_debug (const char *format, ...)
(*__Z_debug_print) (format, pvar, __Z_debug_print_closure);
va_end (pvar);
}
-#else /* stdarg */
-void Z_debug (va_alist) va_dcl
-{
- va_list pvar;
- char *format;
- if (!__Z_debug_print)
- return;
- va_start (pvar);
- format = va_arg (pvar, char *);
- (*__Z_debug_print) (format, pvar, __Z_debug_print_closure);
- va_end (pvar);
-}
-#endif
-void Z_debug_stderr (format, args, closure)
- const char *format;
- va_list args;
- void *closure;
+void
+Z_debug_stderr(const char *format,
+ va_list args,
+ void *closure)
{
#ifdef HAVE_VPRINTF
vfprintf (stderr, format, args);
@@ -1277,21 +1272,21 @@ void Z_debug_stderr (format, args, closure)
}
#undef ZGetFD
-int ZGetFD () { return __Zephyr_fd; }
+int ZGetFD (void) { return __Zephyr_fd; }
#undef ZQLength
-int ZQLength () { return __Q_CompleteLength; }
+int ZQLength (void) { return __Q_CompleteLength; }
#undef ZGetDestAddr
-struct sockaddr_in ZGetDestAddr () { return __HM_addr; }
+struct sockaddr_in ZGetDestAddr (void) { return __HM_addr; }
#undef ZGetRealm
-Zconst char * ZGetRealm () { return __Zephyr_realm; }
+Zconst char * ZGetRealm (void) { return __Zephyr_realm; }
#undef ZSetDebug
-void ZSetDebug(proc, arg)
- void (*proc) __P((const char *, va_list, void *));
- char *arg;
+void
+ZSetDebug(void (*proc) __P((const char *, va_list, void *)),
+ char *arg)
{
__Z_debug_print = proc;
__Z_debug_print_closure = arg;
@@ -1299,9 +1294,13 @@ void ZSetDebug(proc, arg)
#endif /* Z_DEBUG */
#ifdef HAVE_KRB5
-Code_t Z_Checksum(krb5_data *cksumbuf, krb5_keyblock *keyblock,
- krb5_cksumtype cksumtype,
- char **asn1_data, int *asn1_len) {
+Code_t
+Z_Checksum(krb5_data *cksumbuf,
+ krb5_keyblock *keyblock,
+ krb5_cksumtype cksumtype,
+ char **asn1_data,
+ int *asn1_len)
+{
krb5_error_code result;
char *data;
int len;
@@ -1360,9 +1359,14 @@ Code_t Z_Checksum(krb5_data *cksumbuf, krb5_keyblock *keyblock,
}
Code_t
-Z_InsertZcodeChecksum(krb5_keyblock *keyblock, ZNotice_t *notice,
- char *buffer, char *cksum_start, int cksum_len,
- char *cstart, char *cend, int buffer_len,
+Z_InsertZcodeChecksum(krb5_keyblock *keyblock,
+ ZNotice_t *notice,
+ char *buffer,
+ char *cksum_start,
+ int cksum_len,
+ char *cstart,
+ char *cend,
+ int buffer_len,
int *length_adjust)
{
int plain_len; /* length of part not to be checksummed */
@@ -1423,8 +1427,10 @@ Z_InsertZcodeChecksum(krb5_keyblock *keyblock, ZNotice_t *notice,
}
Code_t
-Z_ExtractEncCksum(krb5_keyblock *keyblock, krb5_enctype *enctype,
- krb5_cksumtype *cksumtype) {
+Z_ExtractEncCksum(krb5_keyblock *keyblock,
+ krb5_enctype *enctype,
+ krb5_cksumtype *cksumtype)
+{
*enctype = Z_enctype(keyblock);
return Z_krb5_lookup_cksumtype(*enctype, cksumtype);
}
@@ -1433,9 +1439,12 @@ Z_ExtractEncCksum(krb5_keyblock *keyblock, krb5_enctype *enctype,
#ifdef HAVE_KRB5
/* returns 0 if invalid or losing, 1 if valid, *sigh* */
int
-Z_krb5_verify_cksum(krb5_keyblock *keyblock, krb5_data *cksumbuf,
- krb5_cksumtype cksumtype, char *asn1_data,
- int asn1_len) {
+Z_krb5_verify_cksum(krb5_keyblock *keyblock,
+ krb5_data *cksumbuf,
+ krb5_cksumtype cksumtype,
+ char *asn1_data,
+ int asn1_len)
+{
krb5_error_code result;
#if HAVE_KRB5_C_MAKE_CHECKSUM
krb5_checksum checksum;