/** * FreeRDP: A Remote Desktop Protocol Implementation * Remote Assistance Virtual Channel * * Copyright 2014 Marc-Andre Moreau * * 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 FREERDP_CHANNEL_REMDESK_H #define FREERDP_CHANNEL_REMDESK_H #include #include #define REMDESK_SVC_CHANNEL_NAME "remdesk" struct _REMDESK_CHANNEL_HEADER { UINT32 DataLength; char ChannelName[32]; }; typedef struct _REMDESK_CHANNEL_HEADER REMDESK_CHANNEL_HEADER; #define REMDESK_CHANNEL_CTL_NAME "RC_CTL" #define REMDESK_CHANNEL_CTL_SIZE 22 struct _REMDESK_CTL_HEADER { UINT32 DataLength; char ChannelName[32]; UINT32 msgType; }; typedef struct _REMDESK_CTL_HEADER REMDESK_CTL_HEADER; #define REMDESK_CTL_REMOTE_CONTROL_DESKTOP 1 #define REMDESK_CTL_RESULT 2 #define REMDESK_CTL_AUTHENTICATE 3 #define REMDESK_CTL_SERVER_ANNOUNCE 4 #define REMDESK_CTL_DISCONNECT 5 #define REMDESK_CTL_VERSIONINFO 6 #define REMDESK_CTL_ISCONNECTED 7 #define REMDESK_CTL_VERIFY_PASSWORD 8 #define REMDESK_CTL_EXPERT_ON_VISTA 9 #define REMDESK_CTL_RANOVICE_NAME 10 #define REMDESK_CTL_RAEXPERT_NAME 11 #define REMDESK_CTL_TOKEN 12 struct _REMDESK_CTL_VERSION_INFO_PDU { REMDESK_CTL_HEADER ctlHeader; UINT32 versionMajor; UINT32 versionMinor; }; typedef struct _REMDESK_CTL_VERSION_INFO_PDU REMDESK_CTL_VERSION_INFO_PDU; struct _REMDESK_CTL_AUTHENTICATE_PDU { REMDESK_CTL_HEADER ctlHeader; char* raConnectionString; char* expertBlob; }; typedef struct _REMDESK_CTL_AUTHENTICATE_PDU REMDESK_CTL_AUTHENTICATE_PDU; struct _REMDESK_CTL_REMOTE_CONTROL_DESKTOP_PDU { REMDESK_CTL_HEADER ctlHeader; char* raConnectionString; }; typedef struct _REMDESK_CTL_REMOTE_CONTROL_DESKTOP_PDU REMDESK_CTL_REMOTE_CONTROL_DESKTOP_PDU; struct _REMDESK_CTL_VERIFY_PASSWORD_PDU { REMDESK_CTL_HEADER ctlHeader; char* expertBlob; }; typedef struct _REMDESK_CTL_VERIFY_PASSWORD_PDU REMDESK_CTL_VERIFY_PASSWORD_PDU; struct _REMDESK_CTL_EXPERT_ON_VISTA_PDU { REMDESK_CTL_HEADER ctlHeader; BYTE* EncryptedPassword; UINT32 EncryptedPasswordLength; }; typedef struct _REMDESK_CTL_EXPERT_ON_VISTA_PDU REMDESK_CTL_EXPERT_ON_VISTA_PDU; #endif /* FREERDP_CHANNEL_REMDESK_H */