Expose dynamic channel PDU types

This commit is contained in:
Armin Novak 2021-09-07 08:03:42 +02:00 committed by akallabeth
parent 5a2231172c
commit 4e44003832
5 changed files with 11 additions and 15 deletions

View File

@ -101,12 +101,6 @@ enum _DRDYNVC_STATE
};
typedef enum _DRDYNVC_STATE DRDYNVC_STATE;
#define CREATE_REQUEST_PDU 0x01
#define DATA_FIRST_PDU 0x02
#define DATA_PDU 0x03
#define CLOSE_REQUEST_PDU 0x04
#define CAPABILITY_REQUEST_PDU 0x05
struct drdynvc_plugin
{
CHANNEL_DEF channelDef;

View File

@ -27,4 +27,13 @@
#define DRDYNVC_SVC_CHANNEL_NAME "drdynvc"
typedef enum
{
CREATE_REQUEST_PDU = 0x01,
DATA_FIRST_PDU = 0x02,
DATA_PDU = 0x03,
CLOSE_REQUEST_PDU = 0x04,
CAPABILITY_REQUEST_PDU = 0x05
} DynamicChannelPDU;
#endif /* FREERDP_CHANNEL_DRDYNVC_H */

View File

@ -111,8 +111,7 @@ struct proxy_plugin
struct proxy_plugins_manager
{
/* 0 used for registering a fresh new proxy plugin. */
BOOL(*RegisterPlugin)
(struct proxy_plugins_manager* mgr, const proxyPlugin* plugin);
BOOL (*RegisterPlugin)(struct proxy_plugins_manager* mgr, const proxyPlugin* plugin);
/* 1 used for setting plugin's per-session info. */
BOOL (*SetPluginData)(struct proxy_plugins_manager* mgr, const char*, proxyData*, void*);

View File

@ -35,12 +35,6 @@ typedef struct WTSVirtualChannelManager WTSVirtualChannelManager;
#include "rdp.h"
#include "mcs.h"
#define CREATE_REQUEST_PDU 0x01
#define DATA_FIRST_PDU 0x02
#define DATA_PDU 0x03
#define CLOSE_REQUEST_PDU 0x04
#define CAPABILITY_REQUEST_PDU 0x05
enum
{
RDP_PEER_CHANNEL_TYPE_SVC = 0,

View File

@ -328,7 +328,7 @@ static BOOL pf_client_receive_channel_data_hook(freerdp* instance, UINT16 channe
return FALSE;
cmd = data[0] >> 4;
if (cmd == 0x01)
if (cmd == CREATE_REQUEST_PDU)
{
proxyChannelDataEventInfo dev;
size_t len, nameLen;