2011-08-01 20:19:39 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-01 20:19:39 +04:00
|
|
|
* Fast Path
|
|
|
|
*
|
|
|
|
* Copyright 2011 Vic Lee
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __FASTPATH_H
|
|
|
|
#define __FASTPATH_H
|
|
|
|
|
2013-11-01 22:13:09 +04:00
|
|
|
typedef struct rdp_fastpath rdpFastPath;
|
|
|
|
|
2011-08-09 19:28:02 +04:00
|
|
|
#include "rdp.h"
|
2013-03-22 00:45:25 +04:00
|
|
|
|
|
|
|
#include <winpr/stream.h>
|
2011-08-01 20:19:39 +04:00
|
|
|
|
2012-01-25 19:07:15 +04:00
|
|
|
enum FASTPATH_INPUT_ACTION_TYPE
|
|
|
|
{
|
|
|
|
FASTPATH_INPUT_ACTION_FASTPATH = 0x0,
|
|
|
|
FASTPATH_INPUT_ACTION_X224 = 0x3
|
|
|
|
};
|
|
|
|
|
2011-08-01 20:19:39 +04:00
|
|
|
enum FASTPATH_OUTPUT_ACTION_TYPE
|
|
|
|
{
|
|
|
|
FASTPATH_OUTPUT_ACTION_FASTPATH = 0x0,
|
|
|
|
FASTPATH_OUTPUT_ACTION_X224 = 0x3
|
|
|
|
};
|
|
|
|
|
2012-01-25 19:07:15 +04:00
|
|
|
enum FASTPATH_INPUT_ENCRYPTION_FLAGS
|
|
|
|
{
|
|
|
|
FASTPATH_INPUT_SECURE_CHECKSUM = 0x1,
|
|
|
|
FASTPATH_INPUT_ENCRYPTED = 0x2
|
|
|
|
};
|
|
|
|
|
2011-08-01 20:19:39 +04:00
|
|
|
enum FASTPATH_OUTPUT_ENCRYPTION_FLAGS
|
|
|
|
{
|
|
|
|
FASTPATH_OUTPUT_SECURE_CHECKSUM = 0x1,
|
|
|
|
FASTPATH_OUTPUT_ENCRYPTED = 0x2
|
|
|
|
};
|
|
|
|
|
2011-08-09 19:28:02 +04:00
|
|
|
enum FASTPATH_UPDATETYPE
|
|
|
|
{
|
|
|
|
FASTPATH_UPDATETYPE_ORDERS = 0x0,
|
|
|
|
FASTPATH_UPDATETYPE_BITMAP = 0x1,
|
|
|
|
FASTPATH_UPDATETYPE_PALETTE = 0x2,
|
|
|
|
FASTPATH_UPDATETYPE_SYNCHRONIZE = 0x3,
|
|
|
|
FASTPATH_UPDATETYPE_SURFCMDS = 0x4,
|
|
|
|
FASTPATH_UPDATETYPE_PTR_NULL = 0x5,
|
|
|
|
FASTPATH_UPDATETYPE_PTR_DEFAULT = 0x6,
|
|
|
|
FASTPATH_UPDATETYPE_PTR_POSITION = 0x8,
|
|
|
|
FASTPATH_UPDATETYPE_COLOR = 0x9,
|
|
|
|
FASTPATH_UPDATETYPE_CACHED = 0xA,
|
|
|
|
FASTPATH_UPDATETYPE_POINTER = 0xB
|
|
|
|
};
|
|
|
|
|
|
|
|
enum FASTPATH_FRAGMENT
|
|
|
|
{
|
|
|
|
FASTPATH_FRAGMENT_SINGLE = 0x0,
|
|
|
|
FASTPATH_FRAGMENT_LAST = 0x1,
|
|
|
|
FASTPATH_FRAGMENT_FIRST = 0x2,
|
|
|
|
FASTPATH_FRAGMENT_NEXT = 0x3
|
|
|
|
};
|
|
|
|
|
|
|
|
enum FASTPATH_OUTPUT_COMPRESSION
|
|
|
|
{
|
|
|
|
FASTPATH_OUTPUT_COMPRESSION_USED = 0x2
|
|
|
|
};
|
|
|
|
|
2011-08-23 11:51:51 +04:00
|
|
|
/* FastPath Input Events */
|
|
|
|
enum FASTPATH_INPUT_EVENT_CODE
|
|
|
|
{
|
|
|
|
FASTPATH_INPUT_EVENT_SCANCODE = 0x0,
|
|
|
|
FASTPATH_INPUT_EVENT_MOUSE = 0x1,
|
|
|
|
FASTPATH_INPUT_EVENT_MOUSEX = 0x2,
|
|
|
|
FASTPATH_INPUT_EVENT_SYNC = 0x3,
|
|
|
|
FASTPATH_INPUT_EVENT_UNICODE = 0x4
|
|
|
|
};
|
|
|
|
|
|
|
|
/* FastPath Keyboard Event Flags */
|
|
|
|
enum FASTPATH_INPUT_KBDFLAGS
|
|
|
|
{
|
|
|
|
FASTPATH_INPUT_KBDFLAGS_RELEASE = 0x01,
|
|
|
|
FASTPATH_INPUT_KBDFLAGS_EXTENDED = 0x02
|
|
|
|
};
|
|
|
|
|
2011-08-09 19:28:02 +04:00
|
|
|
struct rdp_fastpath
|
|
|
|
{
|
|
|
|
rdpRdp* rdp;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE encryptionFlags;
|
|
|
|
BYTE numberEvents;
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* updateData;
|
2013-04-30 07:55:44 +04:00
|
|
|
int fragmentation;
|
2011-08-09 19:28:02 +04:00
|
|
|
};
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
UINT16 fastpath_header_length(wStream* s);
|
|
|
|
UINT16 fastpath_read_header(rdpFastPath* fastpath, wStream* s);
|
|
|
|
BOOL fastpath_read_header_rdp(rdpFastPath* fastpath, wStream* s, UINT16 *length);
|
|
|
|
int fastpath_recv_updates(rdpFastPath* fastpath, wStream* s);
|
|
|
|
int fastpath_recv_inputs(rdpFastPath* fastpath, wStream* s);
|
2011-08-09 19:28:02 +04:00
|
|
|
|
2013-04-15 14:14:09 +04:00
|
|
|
wStream* fastpath_input_pdu_init_header(rdpFastPath* fastpath);
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* fastpath_input_pdu_init(rdpFastPath* fastpath, BYTE eventFlags, BYTE eventCode);
|
2013-04-15 14:14:09 +04:00
|
|
|
BOOL fastpath_send_multiple_input_pdu(rdpFastPath* fastpath, wStream* s, int iEventCount);
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL fastpath_send_input_pdu(rdpFastPath* fastpath, wStream* s);
|
2011-08-16 10:37:11 +04:00
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* fastpath_update_pdu_init(rdpFastPath* fastpath);
|
2013-05-10 00:30:28 +04:00
|
|
|
wStream* fastpath_update_pdu_init_new(rdpFastPath* fastpath);
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL fastpath_send_update_pdu(rdpFastPath* fastpath, BYTE updateCode, wStream* s);
|
2011-08-23 19:28:28 +04:00
|
|
|
|
2012-10-09 11:26:39 +04:00
|
|
|
BOOL fastpath_send_surfcmd_frame_marker(rdpFastPath* fastpath, UINT16 frameAction, UINT32 frameId);
|
2011-08-23 19:28:28 +04:00
|
|
|
|
2011-08-09 19:28:02 +04:00
|
|
|
rdpFastPath* fastpath_new(rdpRdp* rdp);
|
|
|
|
void fastpath_free(rdpFastPath* fastpath);
|
2011-08-01 20:19:39 +04:00
|
|
|
|
|
|
|
#endif
|