aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rdpudp.h
blob: d26363a490263a3462c333a72659ca8414f76664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* packet-rdpudp.h
 * RDP UDP dissection
 * Author: David Fort
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef __PACKET_RDPUDP_H__
#define __PACKET_RDPUDP_H__

#include <glib.h>
#include <epan/packet.h>

extern int proto_rdpudp;

typedef struct {
	guint64 current_base;
	guint16 last_received;
} rdpudp_seq_context_t;

typedef struct _rdpudp_conv_info_t {
	guint32 start_v2_at;
	gboolean is_lossy;

	address server_addr;
	guint16 server_port;
	wmem_tree_t* server_chunks;
	rdpudp_seq_context_t server_data_seq;
	rdpudp_seq_context_t server_channel_seq;
	wmem_tree_t* client_chunks;
	rdpudp_seq_context_t client_data_seq;
	rdpudp_seq_context_t client_channel_seq;
} rdpudp_conv_info_t;

gboolean rdp_isServerAddressTarget(packet_info *pinfo);
gboolean rdpudp_is_reliable_transport(packet_info *pinfo);

#endif /* __PACKET_RDPUDP_H_ */