Indention of code
[netsniff-ng.git] / src / include / dump.h
blob72ba23be7ea3d872bee65dbf04f96df665744f3f
1 /*
2 * Copyright (C) 2009, 2010 Daniel Borkmann <daniel@netsniff-ng.org> and
3 * Emmanuel Roullit <emmanuel@netsniff-ng.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or (at
8 * your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
20 #ifndef _DUMP_H_
21 #define _DUMP_H_
23 #include <linux/if_packet.h>
24 #include <linux/if_ether.h>
26 extern int pcap_write_header(int fd, int linktype, int thiszone, int snaplen);
27 extern void pcap_dump(int fd, struct tpacket_hdr *tp_h,
28 const struct ethhdr const *sp);
30 #endif /* _DUMP_H_ */