15#include "ws_symbol_export.h"
17#define PCAPNG_MAGIC 0x1A2B3C4D
18#define PCAPNG_SWAPPED_MAGIC 0x4D3C2B1A
20#define PCAPNG_MAJOR_VERSION 1
21#define PCAPNG_MINOR_VERSION 0
struct pcapng_section_header_block_s pcapng_section_header_block_t
Section Header Block (SHB) body encoding in a pcapng file, marking the start of a capture section.
struct pcapng_interface_description_block_s pcapng_interface_description_block_t
Interface Description Block (IDB) body encoding in a pcapng file, describing a capture interface.
wtap_open_return_val pcapng_open(wtap *wth, int *err, char **err_info)
Opens a pcapng file.
Definition pcapng.c:3544
struct pcapng_interface_statistics_block_s pcapng_interface_statistics_block_t
Interface Statistics Block (ISB) body encoding in a pcapng file, reporting per-interface capture stat...
struct pcapng_decryption_secrets_block_s pcapng_decryption_secrets_block_t
Decryption Secrets Block (DSB) body encoding in a pcapng file, embedding key material for decrypting ...
struct pcapng_block_header_s pcapng_block_header_t
Common block header shared by every block type in a pcapng capture file.
Decryption Secrets Block (DSB) body encoding in a pcapng file, embedding key material for decrypting ...
Definition pcapng.h:68
uint32_t secrets_type
Definition pcapng.h:69
uint32_t secrets_len
Definition pcapng.h:70
Interface Description Block (IDB) body encoding in a pcapng file, describing a capture interface.
Definition pcapng.h:48
uint16_t reserved
Definition pcapng.h:50
uint16_t linktype
Definition pcapng.h:49
uint32_t snaplen
Definition pcapng.h:51
Interface Statistics Block (ISB) body encoding in a pcapng file, reporting per-interface capture stat...
Definition pcapng.h:58
uint32_t timestamp_high
Definition pcapng.h:60
uint32_t timestamp_low
Definition pcapng.h:61
uint32_t interface_id
Definition pcapng.h:59
Definition wtap_module.h:58
wtap_open_return_val
For registering file types that we can open.
Definition wtap.h:1851