summaryrefslogtreecommitdiff
path: root/src/cache/log.c
blob: bc673842b3c9f97dd9ea2849f778466be0aea79f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ISC license. */

#include <skalibs/fmtscan.h>
#include <skalibs/strerr.h>
#include <skalibs/ip46.h>

#include "shibari-cache-internal.h"

void log_tcptimeout (uint16_t i)
{
  if (g->verbosity >= 3)
  {
  }
}

void log_newtcp4 (char const *ip, uint16_t port)
{
  if (g->verbosity >= 3)
  {
  }
}

#ifdef SKALIBS_IPV6_ENABLED
void log_newtcp6 (char const *ip, uint16_t port)
{
  if (g->verbosity >= 3)
  {
  }
}
#endif