mirror of https://github.com/FreeRDP/FreeRDP
92 lines
3.4 KiB
C
92 lines
3.4 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* RDP Client Info
|
|
*
|
|
* Copyright 2011 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.
|
|
*/
|
|
|
|
#ifndef __INFO_H
|
|
#define __INFO_H
|
|
|
|
#include "rdp.h"
|
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <winpr/stream.h>
|
|
|
|
/* Client Address Family */
|
|
#define ADDRESS_FAMILY_INET 0x0002
|
|
#define ADDRESS_FAMILY_INET6 0x0017
|
|
|
|
/* Client Info Packet Flags */
|
|
#define INFO_MOUSE 0x00000001
|
|
#define INFO_DISABLECTRLALTDEL 0x00000002
|
|
#define INFO_AUTOLOGON 0x00000008
|
|
#define INFO_UNICODE 0x00000010
|
|
#define INFO_MAXIMIZESHELL 0x00000020
|
|
#define INFO_LOGONNOTIFY 0x00000040
|
|
#define INFO_COMPRESSION 0x00000080
|
|
#define INFO_ENABLEWINDOWSKEY 0x00000100
|
|
#define INFO_REMOTECONSOLEAUDIO 0x00002000
|
|
#define INFO_FORCE_ENCRYPTED_CS_PDU 0x00004000
|
|
#define INFO_RAIL 0x00008000
|
|
#define INFO_LOGONERRORS 0x00010000
|
|
#define INFO_MOUSE_HAS_WHEEL 0x00020000
|
|
#define INFO_PASSWORD_IS_SC_PIN 0x00040000
|
|
#define INFO_NOAUDIOPLAYBACK 0x00080000
|
|
#define INFO_USING_SAVED_CREDS 0x00100000
|
|
#define RNS_INFO_AUDIOCAPTURE 0x00200000
|
|
#define RNS_INFO_VIDEO_DISABLE 0x00400000
|
|
#define INFO_CompressionTypeMask 0x00001E00
|
|
#define INFO_PACKET_COMPR_TYPE_8K 0x00000100
|
|
#define INFO_PACKET_COMPR_TYPE_64K 0x00000200
|
|
#define INFO_PACKET_COMPR_TYPE_RDP6 0x00000400
|
|
#define INFO_PACKET_COMPR_TYPE_RDP61 0x00000600
|
|
|
|
/* Logon Information Types */
|
|
#define INFO_TYPE_LOGON 0x00000000
|
|
#define INFO_TYPE_LOGON_LONG 0x00000001
|
|
#define INFO_TYPE_LOGON_PLAIN_NOTIFY 0x00000002
|
|
#define INFO_TYPE_LOGON_EXTENDED_INF 0x00000003
|
|
|
|
/* Extended Logon Info */
|
|
#define LOGON_EX_AUTORECONNECTCOOKIE 0x00000001
|
|
#define LOGON_EX_LOGONERRORS 0x00000002
|
|
|
|
/* Logon Error Info */
|
|
#define LOGON_FAILED_BAD_PASSWORD 0x00000000
|
|
#define LOGON_FAILED_UPDATE_PASSWORD 0x00000001
|
|
#define LOGON_FAILED_OTHER 0x00000002
|
|
#define LOGON_WARNING 0x00000003
|
|
|
|
void rdp_read_system_time(wStream* s, SYSTEM_TIME* system_time);
|
|
void rdp_write_system_time(wStream* s, SYSTEM_TIME* system_time);
|
|
void rdp_get_client_time_zone(wStream* s, rdpSettings* settings);
|
|
BOOL rdp_read_client_time_zone(wStream* s, rdpSettings* settings);
|
|
void rdp_write_client_time_zone(wStream* s, rdpSettings* settings);
|
|
BOOL rdp_read_server_auto_reconnect_cookie(wStream* s, rdpSettings* settings);
|
|
BOOL rdp_read_client_auto_reconnect_cookie(wStream* s, rdpSettings* settings);
|
|
void rdp_write_client_auto_reconnect_cookie(wStream* s, rdpSettings* settings);
|
|
void rdp_write_auto_reconnect_cookie(wStream* s, rdpSettings* settings);
|
|
BOOL rdp_read_extended_info_packet(wStream* s, rdpSettings* settings);
|
|
void rdp_write_extended_info_packet(wStream* s, rdpSettings* settings);
|
|
BOOL rdp_read_info_packet(wStream* s, rdpSettings* settings);
|
|
void rdp_write_info_packet(wStream* s, rdpSettings* settings);
|
|
BOOL rdp_recv_client_info(rdpRdp* rdp, wStream* s);
|
|
BOOL rdp_send_client_info(rdpRdp* rdp);
|
|
BOOL rdp_recv_save_session_info(rdpRdp* rdp, wStream* s);
|
|
|
|
#endif /* __INFO_H */
|