src/auth/Makefile \
src/adaptation/Makefile \
src/ICAP/Makefile \
+ src/icmp/Makefile \
src/eCAP/Makefile \
contrib/Makefile \
snmplib/Makefile \
static int TheDepth; // level of nested debugging calls
};
+extern FILE *debug_log;
+
/* Debug stream */
#define debugs(SECTION, LEVEL, CONTENT) \
do { \
mime.cc \
multicast.cc \
neighbors.cc \
- net_db.cc \
Packer.cc \
Packer.h \
Parsing.cc \
mime.cc \
multicast.cc \
neighbors.cc \
- net_db.cc \
Packer.cc \
Parsing.cc \
$(XPROF_STATS_SOURCE) \
MemObject.cc \
mime.cc \
neighbors.cc \
- net_db.cc \
Packer.cc \
Parsing.cc \
pconn.cc \
MemObject.cc \
mime.cc \
neighbors.cc \
- net_db.cc \
Packer.cc \
Parsing.cc \
pconn.cc \
MemObject.cc \
mime.cc \
neighbors.cc \
- net_db.cc \
Packer.cc \
Parsing.cc \
pconn.cc \
mime.cc \
multicast.cc \
neighbors.cc \
- net_db.cc \
Parsing.cc \
peer_digest.cc \
peer_select.cc \
MemObject.cc \
mime.cc \
neighbors.cc \
- net_db.cc \
Packer.cc \
Parsing.cc \
pconn.cc \
MemObject.cc \
mime.cc \
neighbors.cc \
- net_db.cc \
Packer.cc \
Parsing.cc \
pconn.cc \
comm_close_start(int fd, void *data)
{
#if USE_SSL
+ fde *F = &fd_table[fd];
if (F->ssl)
ssl_shutdown_method(fd);
int Debug::Levels[MAX_DEBUG_SECTIONS];
int Debug::level;
-
+FILE *debug_log = NULL;
static char *debug_log_file = NULL;
static int Ctx_Lock = 0;
static const char *debugLogTime(void);
{
#endif
- extern FILE *debug_log; /* NULL */
+//MOVED:Debug.h extern FILE *debug_log; /* NULL */
//MOVED:structs.h extern SquidConfig Config;
//MOVED:structs.h extern SquidConfig2 Config2;
extern char *ConfigFile; /* NULL */
#if USE_ICMP
-#include "ICMPv4.h"
-#include "ICMPv6.h"
-#include "ICMPPinger.h"
+#include "Icmp4.h"
+#include "Icmp6.h"
+#include "IcmpPinger.h"
#ifdef _SQUID_MSWIN_
#endif /* _SQUID_MSWIN_ */
// ICMP Engines are declared global here so they can call each other easily.
-ICMPPinger control;
-ICMPv4 icmp4;
+IcmpPinger control;
+Icmp4 icmp4;
#if USE_IPV6
-ICMPv6 icmp6;
+Icmp6 icmp6;
#endif
int icmp_pkts_sent = 0;
#endif
#if USE_ICMP
-#include "ICMPConfig.h"
+#include "icmp/IcmpConfig.h"
#endif
/* forward decl for SquidConfig, see RemovalPolicy.h */
#endif
#if USE_ICMP
- ICMPConfig pinger;
+ IcmpConfig pinger;
#endif
char *as_whois_server;