aboutsummaryrefslogtreecommitdiffstats
path: root/src/cache/log.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2024-07-30 14:36:22 +0000
committerLaurent Bercot <ska@appnovation.com>2024-07-30 14:36:22 +0000
commit1360696c2d6ed7083a71979c8382c9d34df12cf0 (patch)
treefa3ee62017ac140d11a32d509e3d9426c72daa14 /src/cache/log.c
parenta788cfec66d6e672fd9bf2e1038d075b5318459a (diff)
downloadshibari-1360696c2d6ed7083a71979c8382c9d34df12cf0.tar.gz
More stuff
Signed-off-by: Laurent Bercot <ska@appnovation.com>
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