Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-irdma.h
1 /* packet-irdma.h
2  *
3  * Definitions for IBM i RDMA packet dissection
4  * Copyright 2018, 2024 IBM Corporation
5  * Brian Jongekryg (bej@us.ibm.com, bej@arbin.net)
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef __PACKET_IRDMA_H__
11 #define __PACKET_IRDMA_H__
12 
13 #define IRDMAEP_DATA_TYPE 0
14 #define IRDMAEP_USERRDMA_TYPE 1
15 
16 typedef struct irdmaep_pdata
17 {
18  unsigned pdata_type;
19  uint32_t userrdma_offset;
20 
22 
23 #endif
Definition: packet-irdma.h:17