2011-07-12 02:46:36 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-12 02:46:36 +04:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#ifndef FREERDP_LIB_CORE_INFO_H
|
|
|
|
#define FREERDP_LIB_CORE_INFO_H
|
2011-07-12 02:46:36 +04:00
|
|
|
|
|
|
|
#include "rdp.h"
|
|
|
|
|
|
|
|
#include <freerdp/freerdp.h>
|
2016-08-10 10:12:55 +03:00
|
|
|
#include <freerdp/api.h>
|
2013-03-22 00:45:25 +04:00
|
|
|
|
|
|
|
#include <winpr/stream.h>
|
2011-07-12 02:46:36 +04:00
|
|
|
|
|
|
|
/* Client Address Family */
|
2019-11-06 17:24:51 +03:00
|
|
|
#define ADDRESS_FAMILY_INET 0x0002
|
|
|
|
#define ADDRESS_FAMILY_INET6 0x0017
|
2011-07-12 02:46:36 +04:00
|
|
|
|
|
|
|
/* Client Info Packet Flags */
|
2019-11-06 17:24:51 +03:00
|
|
|
#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 INFO_AUDIOCAPTURE 0x00200000
|
|
|
|
#define INFO_VIDEO_DISABLE 0x00400000
|
|
|
|
#define INFO_HIDEF_RAIL_SUPPORTED 0x02000000
|
2011-07-12 02:46:36 +04:00
|
|
|
|
2011-07-25 21:42:14 +04:00
|
|
|
/* Extended Logon Info */
|
2019-11-06 17:24:51 +03:00
|
|
|
#define LOGON_EX_AUTORECONNECTCOOKIE 0x00000001
|
|
|
|
#define LOGON_EX_LOGONERRORS 0x00000002
|
2011-07-25 21:42:14 +04:00
|
|
|
|
2016-02-18 16:19:36 +03:00
|
|
|
#define SAVE_SESSION_PDU_VERSION_ONE 0x0001
|
|
|
|
|
2016-08-10 10:12:55 +03:00
|
|
|
FREERDP_LOCAL BOOL rdp_recv_client_info(rdpRdp* rdp, wStream* s);
|
|
|
|
FREERDP_LOCAL BOOL rdp_send_client_info(rdpRdp* rdp);
|
|
|
|
FREERDP_LOCAL BOOL rdp_recv_save_session_info(rdpRdp* rdp, wStream* s);
|
2019-01-29 12:33:06 +03:00
|
|
|
FREERDP_LOCAL BOOL rdp_send_save_session_info(rdpContext* context, UINT32 type, void* data);
|
|
|
|
FREERDP_LOCAL BOOL rdp_send_server_status_info(rdpContext* context, UINT32 status);
|
2011-07-12 02:46:36 +04:00
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_LIB_CORE_INFO_H */
|