]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Added radix stuff.
authorkostas <>
Sun, 21 Dec 1997 18:21:11 +0000 (18:21 +0000)
committerkostas <>
Sun, 21 Dec 1997 18:21:11 +0000 (18:21 +0000)
src/globals.h
src/squid.h

index 27fa3fdfe8045e97aa6e23924b51be775e72923d..606bc51a2d969284ce4eba2bfc0bff3b9b98466c 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: globals.h,v 1.21 1997/12/03 01:32:26 wessels Exp $
+ * $Id: globals.h,v 1.22 1997/12/21 11:21:11 kostas Exp $
  */
 
 extern FILE *debug_log;                /* NULL */
@@ -102,6 +102,7 @@ extern time_t hit_only_mode_until;  /* 0 */
 extern StatCounters Counter;
 extern char *err_type_str[];
 extern char *icp_opcode_str[];
+extern struct radix_node_head *AS_tree_head;
 
 #ifdef HAVE_SYSLOG
 extern int _db_level;
index 6c064ba96d287d8c4cd1e0aefff91fc6f19fb05f..2faaa01815c8588a24f73baa370f7d380dd04c01 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: squid.h,v 1.144 1997/12/06 01:26:28 wessels Exp $
+ * $Id: squid.h,v 1.145 1997/12/21 11:21:11 kostas Exp $
  *
  * AUTHOR: Duane Wessels
  *
  * places
  */
 typedef void struct {
-        struct timeval ru_stime;
-        int ru_maxrss;
-        int ru_majflt;
+    struct timeval ru_stime;
+    int ru_maxrss;
+    int ru_majflt;
 } rusage;
+
 #endif
 #endif
 
@@ -311,6 +312,7 @@ typedef void struct {
 #include "globals.h"
 
 #include "util.h"
+#include "radix.h"
 
 #if !HAVE_TEMPNAM
 #include "tempnam.h"