blob: 8bba40a40bfd5cf99a6f74fef55a9094bea5206b [file] [log] [blame] [raw]
/*
* Copyright (C) 2002 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#include "ipf.h"
alist_t *make_range(not, a1, a2)
int not;
struct in_addr a1, a2;
{
alist_t *a;
a = (alist_t *)calloc(1, sizeof(*a));
if (a != NULL) {
a->al_1 = a1.s_addr;
a->al_2 = a2.s_addr;
a->al_not = not;
}
return a;
}