2014-02-12 00:42:28 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Client Channels
|
|
|
|
*
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#ifndef FREERDP_LIB_CORE_CLIENT_H
|
|
|
|
#define FREERDP_LIB_CORE_CLIENT_H
|
2014-02-12 00:42:28 +04:00
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/stream.h>
|
|
|
|
|
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/constants.h>
|
|
|
|
|
|
|
|
#include <freerdp/svc.h>
|
|
|
|
#include <freerdp/peer.h>
|
|
|
|
#include <freerdp/addin.h>
|
2016-08-10 10:12:55 +03:00
|
|
|
#include <freerdp/api.h>
|
2014-09-12 16:36:29 +04:00
|
|
|
|
2014-02-12 00:42:28 +04:00
|
|
|
#include <freerdp/client/channels.h>
|
|
|
|
#include <freerdp/client/drdynvc.h>
|
|
|
|
#include <freerdp/channels/channels.h>
|
|
|
|
|
2017-11-23 18:18:44 +03:00
|
|
|
#define CHANNEL_MAX_COUNT 31
|
2014-02-12 00:42:28 +04:00
|
|
|
|
|
|
|
struct rdp_channel_client_data
|
|
|
|
{
|
|
|
|
PVIRTUALCHANNELENTRY entry;
|
2016-11-15 00:44:45 +03:00
|
|
|
PVIRTUALCHANNELENTRYEX entryEx;
|
2014-02-12 00:42:28 +04:00
|
|
|
PCHANNEL_INIT_EVENT_FN pChannelInitEventProc;
|
2016-11-15 00:44:45 +03:00
|
|
|
PCHANNEL_INIT_EVENT_EX_FN pChannelInitEventProcEx;
|
2014-02-12 00:42:28 +04:00
|
|
|
void* pInitHandle;
|
2016-11-15 17:09:30 +03:00
|
|
|
void* lpUserParam;
|
2014-02-12 00:42:28 +04:00
|
|
|
};
|
|
|
|
typedef struct rdp_channel_client_data CHANNEL_CLIENT_DATA;
|
|
|
|
|
|
|
|
struct rdp_channel_open_data
|
|
|
|
{
|
|
|
|
char name[8];
|
|
|
|
int OpenHandle;
|
|
|
|
int options;
|
|
|
|
int flags;
|
|
|
|
void* pInterface;
|
2014-02-15 23:57:10 +04:00
|
|
|
rdpChannels* channels;
|
2016-11-15 00:44:45 +03:00
|
|
|
void* lpUserParam;
|
2014-02-12 00:42:28 +04:00
|
|
|
PCHANNEL_OPEN_EVENT_FN pChannelOpenEventProc;
|
2016-11-15 00:44:45 +03:00
|
|
|
PCHANNEL_OPEN_EVENT_EX_FN pChannelOpenEventProcEx;
|
2014-02-12 00:42:28 +04:00
|
|
|
};
|
|
|
|
typedef struct rdp_channel_open_data CHANNEL_OPEN_DATA;
|
|
|
|
|
|
|
|
struct _CHANNEL_OPEN_EVENT
|
|
|
|
{
|
|
|
|
void* Data;
|
|
|
|
UINT32 DataLength;
|
|
|
|
void* UserData;
|
2014-02-15 23:57:10 +04:00
|
|
|
CHANNEL_OPEN_DATA* pChannelOpenData;
|
2014-02-12 00:42:28 +04:00
|
|
|
};
|
|
|
|
typedef struct _CHANNEL_OPEN_EVENT CHANNEL_OPEN_EVENT;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* pInitHandle: handle that identifies the client connection
|
|
|
|
* Obtained by the client with VirtualChannelInit
|
|
|
|
* Used by the client with VirtualChannelOpen
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct rdp_channel_init_data
|
|
|
|
{
|
|
|
|
rdpChannels* channels;
|
|
|
|
void* pInterface;
|
|
|
|
};
|
|
|
|
typedef struct rdp_channel_init_data CHANNEL_INIT_DATA;
|
|
|
|
|
|
|
|
struct rdp_channels
|
|
|
|
{
|
|
|
|
/* internal */
|
|
|
|
|
|
|
|
int clientDataCount;
|
|
|
|
CHANNEL_CLIENT_DATA clientDataList[CHANNEL_MAX_COUNT];
|
|
|
|
|
|
|
|
int openDataCount;
|
|
|
|
CHANNEL_OPEN_DATA openDataList[CHANNEL_MAX_COUNT];
|
|
|
|
|
|
|
|
int initDataCount;
|
|
|
|
CHANNEL_INIT_DATA initDataList[CHANNEL_MAX_COUNT];
|
|
|
|
|
|
|
|
/* control for entry into MyVirtualChannelInit */
|
|
|
|
int can_call_init;
|
|
|
|
|
|
|
|
/* true once freerdp_channels_post_connect is called */
|
2015-02-07 01:35:14 +03:00
|
|
|
BOOL connected;
|
2014-02-12 00:42:28 +04:00
|
|
|
|
|
|
|
/* used for locating the channels for a given instance */
|
|
|
|
freerdp* instance;
|
|
|
|
|
2014-12-27 23:20:29 +03:00
|
|
|
wMessageQueue* queue;
|
2014-02-12 00:42:28 +04:00
|
|
|
|
|
|
|
DrdynvcClientContext* drdynvc;
|
2016-08-09 13:04:06 +03:00
|
|
|
CRITICAL_SECTION channelsLock;
|
2016-11-23 15:17:56 +03:00
|
|
|
|
2016-08-09 13:04:06 +03:00
|
|
|
wHashTable* openHandles;
|
2014-02-12 00:42:28 +04:00
|
|
|
};
|
|
|
|
|
2016-08-10 10:12:55 +03:00
|
|
|
FREERDP_LOCAL rdpChannels* freerdp_channels_new(freerdp* instance);
|
|
|
|
FREERDP_LOCAL UINT freerdp_channels_disconnect(rdpChannels* channels,
|
|
|
|
freerdp* instance);
|
|
|
|
FREERDP_LOCAL void freerdp_channels_close(rdpChannels* channels,
|
|
|
|
freerdp* instance);
|
|
|
|
FREERDP_LOCAL void freerdp_channels_free(rdpChannels* channels);
|
2016-08-10 14:33:34 +03:00
|
|
|
FREERDP_LOCAL UINT freerdp_channels_pre_connect(rdpChannels* channels,
|
|
|
|
freerdp* instance);
|
|
|
|
FREERDP_LOCAL UINT freerdp_channels_post_connect(rdpChannels* channels,
|
|
|
|
freerdp* instance);
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_LIB_CORE_CLIENT_H */
|