/*
- * $Id: util.h,v 1.16 1996/09/15 07:04:01 wessels Exp $
+ * $Id: util.h,v 1.17 1996/09/16 17:22:02 wessels Exp $
*
* AUTHOR: Harvest Derived
*
extern char *xstrdup __P((char *)); /* Duplicate a string */
/* from xmalloc.c */
-void *xmalloc __P((size_t)); /* Wrapper for malloc(3) */
+void *xmalloc __P((size_t)); /* Wrapper for malloc(3) */
void *xrealloc __P((void *, size_t)); /* Wrapper for realloc(3) */
void *xcalloc __P((int, size_t)); /* Wrapper for calloc(3) */
-void xfree __P((void *)); /* Wrapper for free(3) */
-void xxfree __P((void *)); /* Wrapper for free(3) */
+void xfree __P((void *)); /* Wrapper for free(3) */
+void xxfree __P((void *)); /* Wrapper for free(3) */
char *xstrdup __P((char *));
char *xstrerror __P((void));
char *getfullhostname __P((void));
void xmemcpy __P((void *, void *, int));
#if XMALLOC_STATISTICS
-void malloc_statistics __P((void (*) __P((int, int, void *)), void *));
+void malloc_statistics __P((void (*)__P((int, int, void *)), void *));
#endif
/* from debug.c */
/*
- * $Id: acl.cc,v 1.37 1996/09/15 08:04:57 wessels Exp $
+ * $Id: acl.cc,v 1.38 1996/09/16 17:21:36 wessels Exp $
*
* DEBUG: section 28 Access Control
* AUTHOR: Duane Wessels
static struct _acl *AclList = NULL;
static struct _acl **AclListTail = &AclList;
-static void aclDestroyAclList __P((struct _acl_list *list));
-static void aclDestroyIpList __P((struct _acl_ip_data *data));
-static void aclDestroyRegexList __P((struct _relist *data));
-static void aclDestroyTimeList __P((struct _acl_time_data *data));
+static void aclDestroyAclList __P((struct _acl_list * list));
+static void aclDestroyIpList __P((struct _acl_ip_data * data));
+static void aclDestroyRegexList __P((struct _relist * data));
+static void aclDestroyTimeList __P((struct _acl_time_data * data));
static int aclMatchDomainList __P((wordlist *, char *));
static int aclMatchAclList __P((struct _acl_list *, aclCheck_t *));
static int aclMatchInteger __P((intlist * data, int i));
-static int aclMatchIp __P((struct _acl_ip_data *data, struct in_addr c));
+static int aclMatchIp __P((struct _acl_ip_data * data, struct in_addr c));
static int aclMatchRegex __P((relist * data, char *word));
-static int aclMatchTime __P((struct _acl_time_data *data, time_t when));
+static int aclMatchTime __P((struct _acl_time_data * data, time_t when));
static intlist *aclParseIntlist __P((void));
static struct _acl_ip_data *aclParseIpList __P((void));
static intlist *aclParseMethodList __P((void));
/*
- * $Id: ipcache.cc,v 1.58 1996/09/16 16:28:39 wessels Exp $
+ * $Id: ipcache.cc,v 1.59 1996/09/16 17:21:42 wessels Exp $
*
* DEBUG: section 14 IP Cache
* AUTHOR: Harvest Derived
static void ipcache_add __P((char *, ipcache_entry *, struct hostent *, int));
static int ipcacheHasPending __P((ipcache_entry *));
static ipcache_entry *ipcache_get __P((char *));
-static int dummy_handler __P((int, struct hostent *hp, void *));
+static int dummy_handler __P((int, struct hostent * hp, void *));
static int ipcacheExpiredEntry __P((ipcache_entry *));
static void ipcacheAddPending __P((ipcache_entry *, int fd, IPH, void *));
static void ipcacheEnqueue __P((ipcache_entry *));
/*
- * $Id: main.cc,v 1.74 1996/09/15 05:04:36 wessels Exp $
+ * $Id: main.cc,v 1.75 1996/09/16 17:21:43 wessels Exp $
*
* DEBUG: section 1 Startup and Main Loop
* AUTHOR: Harvest Derived
char *dash_str = "-";
/* for error reporting from xmalloc and friends */
-extern void (*failure_notify) __P((char *));
+extern void (*failure_notify) __P((char *));
static int rotate_pending = 0; /* set by SIGUSR1 handler */
static int httpPortNumOverride = 1;