dcerpc-netlogon: improve NetrLogonGetCapabilities dissection
[wireshark-sm.git] / wiretap / pcap-encap.h
blob872a3f961d90d5f28ab48f7471593c5528db380b
1 /** @file
2 * Declarations for routines to handle pcap/pcapng linktype values
4 * Wiretap Library
5 * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
7 * File format support for pcapng file format
8 * Copyright (c) 2007 by Ulf Lamping <ulf.lamping@web.de>
10 * SPDX-License-Identifier: GPL-2.0-or-later
13 #ifndef __W_PCAP_ENCAP_H__
14 #define __W_PCAP_ENCAP_H__
16 #include <glib.h>
17 #include <wiretap/wtap.h>
19 #ifdef __cplusplus
20 extern "C" {
21 #endif /* __cplusplus */
23 WS_DLL_PUBLIC int wtap_pcap_encap_to_wtap_encap(int encap);
24 int wtap_wtap_encap_to_pcap_encap(int encap);
25 WS_DLL_PUBLIC bool wtap_encap_requires_phdr(int encap);
27 #ifdef __cplusplus
29 #endif /* __cplusplus */
31 #endif