/*
- * $Id: acl.cc,v 1.94 1997/05/02 04:28:32 wessels Exp $
+ * $Id: acl.cc,v 1.95 1997/05/15 01:18:41 wessels Exp $
*
* DEBUG: section 28 Access Control
* AUTHOR: Duane Wessels
static struct _acl *AclList = NULL;
static struct _acl **AclListTail = &AclList;
-static const char *const w_space = " \t\n\r"; /* Jasper sez so */
static int aclFromFile = 0;
static FILE *aclFile;
/*
- * $Id: cache_cf.cc,v 1.185 1997/05/15 01:06:50 wessels Exp $
+ * $Id: cache_cf.cc,v 1.186 1997/05/15 01:18:42 wessels Exp $
*
* DEBUG: section 3 Configuration File Parsing
* AUTHOR: Harvest Derived
char *ConfigFile = NULL; /* the whole thing */
const char *cfg_filename = NULL; /* just the last part */
-static const char *const w_space = " \t\n\r";
static const char *const list_sep = ", \t\n\r";
char config_input_line[BUFSIZ];
int config_lineno = 0;
/*
- * $Id: debug.cc,v 1.42 1997/01/31 21:16:48 wessels Exp $
+ * $Id: debug.cc,v 1.43 1997/05/15 01:18:43 wessels Exp $
*
* DEBUG: section 0 Debug Routines
* AUTHOR: Harvest Derived
FILE *debug_log = NULL;
static char *debug_log_file = NULL;
-static const char *const w_space = " \t\n\r";
#define MAX_DEBUG_SECTIONS 100
static int debugLevels[MAX_DEBUG_SECTIONS];
/*
- * $Id: fqdncache.cc,v 1.53 1997/05/05 03:43:42 wessels Exp $
+ * $Id: fqdncache.cc,v 1.54 1997/05/15 01:18:43 wessels Exp $
*
* DEBUG: section 35 FQDN Cache
* AUTHOR: Harvest Derived
static long fqdncache_low = 180;
static long fqdncache_high = 200;
-static const char *const w_space = " \t\n\r";
static void
fqdncacheEnqueue(fqdncache_entry * f)
/*
- * $Id: ftp.cc,v 1.105 1997/05/15 01:06:54 wessels Exp $
+ * $Id: ftp.cc,v 1.106 1997/05/15 01:18:44 wessels Exp $
*
* DEBUG: section 9 File Transfer Protocol (FTP)
* AUTHOR: Harvest Derived
static int ftpget_server_read = -1;
static int ftpget_server_write = -1;
static u_short ftpget_port = 0;
-static const char *const w_space = " \t\n\r";
typedef struct _Ftpdata {
StoreEntry *entry;
/*
- * $Id: ipcache.cc,v 1.114 1997/05/05 03:43:46 wessels Exp $
+ * $Id: ipcache.cc,v 1.115 1997/05/15 01:18:45 wessels Exp $
*
* DEBUG: section 14 IP Cache
* AUTHOR: Harvest Derived
static long ipcache_low = 180;
static long ipcache_high = 200;
-static const char *const w_space = " \t\n\r";
#if LIBRESOLV_DNS_TTL_HACK
extern int _dns_ttl_;
/*
- * $Id: main.cc,v 1.144 1997/05/15 01:06:58 wessels Exp $
+ * $Id: main.cc,v 1.145 1997/05/15 01:18:46 wessels Exp $
*
* DEBUG: section 1 Startup and Main Loop
* AUTHOR: Harvest Derived
struct in_addr theOutICPAddr;
const char *const dash_str = "-";
const char *const null_string = "";
+const char *const w_space = " \t\n\r";
char ThisCache[SQUIDHOSTNAMELEN << 1];
/* for error reporting from xmalloc and friends */
/*
- * $Id: mime.cc,v 1.28 1997/05/15 01:06:59 wessels Exp $
+ * $Id: mime.cc,v 1.29 1997/05/15 01:18:46 wessels Exp $
*
* DEBUG: section 25 MIME Parsing
* AUTHOR: Harvest Derived
static mimeEntry *MimeTable = NULL;
static mimeEntry **MimeTableTail = NULL;
-static const char *const w_space = " \t\n\r";
-static const char *const dash_str = "-";
-
-
char *
mime_get_header(const char *mime, const char *name)
{
/*
- * $Id: net_db.cc,v 1.34 1997/04/30 20:06:33 wessels Exp $
+ * $Id: net_db.cc,v 1.35 1997/05/15 01:18:47 wessels Exp $
*
* DEBUG: section 37 Network Measurement Database
* AUTHOR: Duane Wessels
* linked list */
static wordlist *peer_names = NULL;
static wordlist **peer_names_tail = &peer_names;
-static const char *const w_space = " \t\n\r";
static void
netdbHashInsert(netdbEntry * n, struct in_addr addr)
/*
- * $Id: squid.h,v 1.111 1997/05/15 01:07:02 wessels Exp $
+ * $Id: squid.h,v 1.112 1997/05/15 01:18:48 wessels Exp $
*
* AUTHOR: Duane Wessels
*
extern const char *const dash_str;
extern const char *const null_string;
+extern const char *const w_space;
#define OR(A,B) (A ? A : B)