Make sure the packet length isn't > WTAP_MAX_PACKET_SIZE.
[metze/wireshark/wip.git] / wiretap / pcap-common.h
1 /* pcap-common.h
2  * Declarations for code common to libpcap and pcap-NG file formats
3  *
4  * Wiretap Library
5  * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
6  *
7  * File format support for pcap-ng file format
8  * Copyright (c) 2007 by Ulf Lamping <ulf.lamping@web.de>
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #ifndef __W_PCAP_COMMON_H__
26 #define __W_PCAP_COMMON_H__
27
28 #include <glib.h>
29 #include "wtap.h"
30 #include "ws_symbol_export.h"
31
32 extern int pcap_process_pseudo_header(FILE_T fh, int file_type, int wtap_encap,
33     guint packet_size, gboolean check_packet_size,
34     struct wtap_pkthdr *phdr, int *err, gchar **err_info);
35
36 extern void pcap_read_post_process(int file_type, int wtap_encap,
37     struct wtap_pkthdr *phdr, guint8 *pd, gboolean bytes_swapped, int fcs_len);
38
39 extern int pcap_get_phdr_size(int encap,
40     const union wtap_pseudo_header *pseudo_header);
41
42 extern gboolean pcap_write_phdr(wtap_dumper *wdh, int wtap_encap,
43     const union wtap_pseudo_header *pseudo_header, int *err);
44
45 #endif