test-network.c revision 2e37d45867d081db150ab78dad303b9077aea24f
/* Copyright (c) 2007-2011 Dovecot authors, see the included COPYING file */
#include "test-lib.h"
#include "network.h"
struct test_net_is_in_network_input {
const char *ip;
const char *net;
unsigned int bits;
bool ret;
};
static void test_net_is_in_network(void)
{
static struct test_net_is_in_network_input input[] = {
#ifdef HAVE_IPV6
,
#endif
};
unsigned int i;
bool success;
for (i = 0; i < N_ELEMENTS(input); i++) {
}
}
void test_network(void)
{
}