30 lines
746 B
C
30 lines
746 B
C
|
/* $NetBSD: printfraginfo.c,v 1.1.1.1 2004/03/28 08:56:20 martti Exp $ */
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2004 by Darren Reed.
|
||
|
*
|
||
|
* See the IPFILTER.LICENCE file for details on licencing.
|
||
|
*
|
||
|
* Id: printfraginfo.c,v 1.1.2.2 2004/03/23 15:15:45 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 %d pr %d seen0 %d ifp %p tos %#02x = %#x\n",
|
||
|
hostname(4, &ifr->ipfr_dst), ifr->ipfr_id, ifr->ipfr_seen0,
|
||
|
ifr->ipfr_ttl, ifr->ipfr_p, ifr->ipfr_ifp, ifr->ipfr_tos,
|
||
|
fr.fr_flags);
|
||
|
}
|