You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typedef struct pcap_hdr_s {
guint32 magic_number; /* magic number */
guint16 version_major; /* major version number */
guint16 version_minor; /* minor version number */
gint32 thiszone; /* GMT to local correction */
guint32 sigfigs; /* accuracy of timestamps */
guint32 snaplen; /* max length of captured packets, in octets */
guint32 network; /* data link type */
} pcap_hdr_t;
github-actionsbot
changed the title
the pcap header in the library doesn't seem to conform the pcap header standard
the pcap header in the library doesn't seem to conform the pcap header standard (IEC-240)
Dec 6, 2024
Answers checklist.
General issue report
according to https://wiki.wireshark.org/Development/LibpcapFileFormat#global-header the pcap header should be:
but the header specified here:
idf-extra-components/pcap/include/pcap.h
Line 52 in 116bceb
doesn't include the magic number sigfigs, snaplen. ..
The text was updated successfully, but these errors were encountered: