summaryrefslogtreecommitdiff
path: root/src/cache/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache/log.c')
-rw-r--r--src/cache/log.c27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/cache/log.c b/src/cache/log.c
index bc67384..0e20f91 100644
--- a/src/cache/log.c
+++ b/src/cache/log.c
@@ -6,7 +6,9 @@
#include "shibari-cache-internal.h"
-void log_tcptimeout (uint16_t i)
+
+
+void log_udp4bad (char const *ip, uint16_t port)
{
if (g->verbosity >= 3)
{
@@ -20,11 +22,34 @@ void log_newtcp4 (char const *ip, uint16_t port)
}
}
+void log_tcpbad (uint16_t i)
+{
+ if (g->verbosity >= 3)
+ {
+ }
+}
+
+void log_tcptimeout (uint16_t i)
+{
+ if (g->verbosity >= 3)
+ {
+ }
+}
+
#ifdef SKALIBS_IPV6_ENABLED
+
+void log_udp6bad (char const *ip, uint16_t port)
+{
+ if (g->verbosity >= 3)
+ {
+ }
+}
+
void log_newtcp6 (char const *ip, uint16_t port)
{
if (g->verbosity >= 3)
{
}
}
+
#endif