diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2024-07-30 14:36:22 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2024-07-30 14:36:22 +0000 |
| commit | 1360696c2d6ed7083a71979c8382c9d34df12cf0 (patch) | |
| tree | fa3ee62017ac140d11a32d509e3d9426c72daa14 /src/cache/log.c | |
| parent | a788cfec66d6e672fd9bf2e1038d075b5318459a (diff) | |
| download | shibari-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.c | 27 |
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 |
