Last change
on this file since 105529 was 105529, checked in by vboxsync, 8 months ago |
libs/libslirp: libslirp 4.8.0 fixed exports. bugref:10268
|
-
Property svn:eol-style
set to
native
|
File size:
809 bytes
|
Line | |
---|
1 | #include <glib.h>
|
---|
2 | #include <stdlib.h>
|
---|
3 | #include <stdio.h>
|
---|
4 | #include "../src/libslirp.h"
|
---|
5 | #include "helper.h"
|
---|
6 |
|
---|
7 | /* Structure for the fuzzers */
|
---|
8 | typedef struct pcap_hdr_s {
|
---|
9 | guint32 magic_number; /* magic number */
|
---|
10 | guint16 version_major; /* major version number */
|
---|
11 | guint16 version_minor; /* minor version number */
|
---|
12 | gint32 thiszone; /* GMT to local correction */
|
---|
13 | guint32 sigfigs; /* accuracy of timestamps */
|
---|
14 | guint32 snaplen; /* max length of captured packets, in octets */
|
---|
15 | guint32 network; /* data link type */
|
---|
16 | } pcap_hdr_t;
|
---|
17 |
|
---|
18 | typedef struct pcaprec_hdr_s {
|
---|
19 | guint32 ts_sec; /* timestamp seconds */
|
---|
20 | guint32 ts_usec; /* timestamp microseconds */
|
---|
21 | guint32 incl_len; /* number of octets of packet saved in file */
|
---|
22 | guint32 orig_len; /* actual length of packet */
|
---|
23 | } pcaprec_hdr_t;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.