Remove all $Id$ from top of file
[metze/wireshark/wip.git] / epan / dissectors / packet-iwarp-ddp-rdmap.h
1 /* packet-iwarp-ddp-rdmap.c
2  * Routines for Direct Data Placement (DDP) and
3  * Remote Direct Memory Access Protocol (RDMAP) dissection
4  * According to IETF RFC 5041 and RFC 5040
5  * Copyright 2008, Yves Geissbuehler <yves.geissbuehler@gmx.net>
6  * Copyright 2008, Philip Frey <frey.philip@gmail.com>
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc.,
25  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
26  */
27 #ifndef __PACKET_IWARP_DDP_RDMAP_H_
28 #define __PACKET_IWARP_DDP_RDMAP_H_
29
30 /* RDMA messages */
31 #define RDMA_WRITE 0x00
32 #define RDMA_READ_REQUEST 0x01
33 #define RDMA_READ_RESPONSE 0x02
34 #define RDMA_SEND 0x03
35 #define RDMA_SEND_INVALIDATE 0x04
36 #define RDMA_SEND_SE 0x05
37 #define RDMA_SEND_SE_INVALIDATE 0x06
38 #define RDMA_TERMINATE 0x07
39
40 struct rdmapinfo {
41         guint8 opcode;
42 };
43
44 #endif /* __PACKET_IWARP_DDP_RDMAP_H_ */