From 1360696c2d6ed7083a71979c8382c9d34df12cf0 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 30 Jul 2024 14:36:22 +0000 Subject: More stuff Signed-off-by: Laurent Bercot --- src/cache/log.c | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'src/cache/log.c') 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 -- cgit v1.3.1