summaryrefslogtreecommitdiff
path: root/src/cache/log.c
blob: 0e20f91649de6e1412c639c555f685bde425cbdc (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* ISC license. */

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

#include "shibari-cache-internal.h"



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

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

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