Merge remote-tracking branch 'origin/master'
[unleashed/lotheac.git] / usr / src / cmd / ipf / lib / common / printfraginfo.c
blob0dc5f565767ec5c5516634feb34665bddea585c2
1 /*
2 * Copyright (C) 2004 by Darren Reed.
4 * See the IPFILTER.LICENCE file for details on licencing.
6 * $Id: printfraginfo.c,v 1.1.2.2 2004/03/23 15:15:45 darrenr Exp $
7 */
8 #include "ipf.h"
9 #include "kmem.h"
11 void printfraginfo(prefix, ifr)
12 char *prefix;
13 struct ipfr *ifr;
15 frentry_t fr;
17 fr.fr_flags = 0xffffffff;
19 printf("%s%s -> ", prefix, hostname(4, &ifr->ipfr_src));
20 if (kmemcpy((char *)&fr, (u_long)ifr->ipfr_rule,
21 sizeof(fr)) == -1)
22 return;
23 printf("%s id %d ttl %d pr %d seen0 %d ifp %p tos %#02x = %#x\n",
24 hostname(4, &ifr->ipfr_dst), ifr->ipfr_id, ifr->ipfr_ttl,
25 ifr->ipfr_p, ifr->ipfr_seen0, ifr->ipfr_ifp, ifr->ipfr_tos,
26 fr.fr_flags);