diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:33 +0000 |
commit | 9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9 (patch) | |
tree | 2784370cda9bbf2da9114d70f05399c0b229d28c /epan/dissectors/packet-irdma.h | |
parent | Adding debian version 4.2.6-1. (diff) | |
download | wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.tar.xz wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.zip |
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-irdma.h')
-rw-r--r-- | epan/dissectors/packet-irdma.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/epan/dissectors/packet-irdma.h b/epan/dissectors/packet-irdma.h new file mode 100644 index 00000000..84405e86 --- /dev/null +++ b/epan/dissectors/packet-irdma.h @@ -0,0 +1,23 @@ +/* packet-irdma.h + * + * Definitions for IBM i RDMA packet dissection + * Copyright 2018, 2024 IBM Corporation + * Brian Jongekryg (bej@us.ibm.com, bej@arbin.net) + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef __PACKET_IRDMA_H__ +#define __PACKET_IRDMA_H__ + +#define IRDMAEP_DATA_TYPE 0 +#define IRDMAEP_USERRDMA_TYPE 1 + +typedef struct irdmaep_pdata +{ + unsigned pdata_type; + uint32_t userrdma_offset; + +} irdmaep_pdata_t; + +#endif |