blob: 5b9378592881d0615589209901fd933c73f3f9d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* packet-sysdig-event.h
* Definitions for Sysdig event dissection
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <stdint.h>
#pragma once
typedef struct _sysdig_event_param_data {
// sysdig.param.asyncevent.data
int data_bytes_offset;
uint32_t data_bytes_length;
} sysdig_event_param_data;
|