blob: 8ce430b965efd210148501d396d54f37cba3d431 [file] [log] [blame] [raw]
/*
* Copyright (C) 2009 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");
}