Darren Reed | c00d1b8 | 2009-03-01 12:48:33 +0000 | [diff] [blame] | 1 | /* |
2 | * Copyright (C) by Darren Reed. | ||||
3 | * | ||||
4 | * See the IPFILTER.LICENCE file for details on licencing. | ||||
5 | * | ||||
6 | * $Id$ | ||||
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 | } |