31 lines
737 B
C
31 lines
737 B
C
/* $NetBSD: printfraginfo.c,v 1.1.1.2 2007/04/14 20:17:31 martin Exp $ */
|
|
|
|
/*
|
|
* Copyright (C) 2004-2005 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*
|
|
* Id: printfraginfo.c,v 1.1.2.5 2006/12/25 15:10:37 darrenr Exp
|
|
*/
|
|
#include "ipf.h"
|
|
#include "kmem.h"
|
|
|
|
void printfraginfo(prefix, ifr)
|
|
char *prefix;
|
|
struct ipfr *ifr;
|
|
{
|
|
frentry_t fr;
|
|
|
|
fr.fr_flags = 0xffffffff;
|
|
|
|
printf("%s%s -> ", prefix, hostname(4, &ifr->ipfr_src));
|
|
/*
|
|
if (kmemcpy((char *)&fr, (u_long)ifr->ipfr_rule,
|
|
sizeof(fr)) == -1)
|
|
return;
|
|
*/
|
|
printf("%s id %d ttl %ld pr %d seen0 %d ref %d tos %#02x\n",
|
|
hostname(4, &ifr->ipfr_dst), ifr->ipfr_id, ifr->ipfr_ttl,
|
|
ifr->ipfr_p, ifr->ipfr_seen0, ifr->ipfr_ref, ifr->ipfr_tos);
|
|
}
|