blob: ff50e7a816b0ebc8de12d169313710f04fb018a8 [file] [log] [blame] [raw]
/*
* Copyright (C) 2007 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*/
#include <fcntl.h>
#include <sys/ioctl.h>
#include "ipf.h"
void
printtqtable(table)
ipftq_t *table;
{
int i;
PRINTF("TCP Entries per state\n");
for (i = 0; i < IPF_TCP_NSTATES; i++)
PRINTF(" %5d", i);
PRINTF("\n");
for (i = 0; i < IPF_TCP_NSTATES; i++)
PRINTF(" %5d", table[i].ifq_ref - 1);
PRINTF("\n");
}