Deleted Added
full compact
33c33,34
< * @(#) $Header: pcap-int.h,v 1.18 96/11/27 18:43:09 leres Exp $ (LBL)
---
> * $FreeBSD: head/contrib/libpcap/pcap-int.h 56891 2000-01-30 00:43:38Z fenner $
> * @(#) $Header: /tcpdump/master/libpcap/pcap-int.h,v 1.20 1999/11/21 01:10:20 assar Exp $ (LBL)
103a105,125
> /*
> * This is a timeval as stored in disk in a dumpfile.
> * It has to use the same types everywhere, independent of the actual
> * `struct timeval'
> */
>
> struct pcap_timeval {
> bpf_int32 tv_sec; /* seconds */
> bpf_int32 tv_usec; /* microseconds */
> };
>
> /*
> * How a `pcap_pkthdr' is actually stored in the dumpfile.
> */
>
> struct pcap_sf_pkthdr {
> struct pcap_timeval ts; /* time stamp */
> bpf_u_int32 caplen; /* length of portion present */
> bpf_u_int32 len; /* length this packet (off wire) */
> };
>
115c137
< #if defined(ultrix) || defined(__alpha)
---
> #if defined(ultrix) || defined(__alpha) || defined(__NetBSD__)