]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/ipfilter/lib/printiphdr.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / ipfilter / lib / printiphdr.c
1 /*
2  * Copyright (C)  by Darren Reed.
3  *
4  * See the IPFILTER.LICENCE file for details on licencing.
5  *
6  * $Id: printiphdr.c,v 1.1 2009/03/01 12:48:32 darren_r Exp $
7  */
8
9 #include "ipf.h"
10
11
12 void
13 printiphdr(ip)
14         ip_t *ip;
15 {
16         PRINTF("ip(v=%d,hl=%d,len=%d,tos=%#x,off=%#x,sum=%#x,src=%#x,dst=%#x",
17                ip->ip_v, ip->ip_hl, ntohs(ip->ip_len), ip->ip_tos,
18                ntohs(ip->ip_off), ntohs(ip->ip_sum), ntohl(ip->ip_src.s_addr),
19                ntohl(ip->ip_dst.s_addr));
20 }