1 | /*
|
---|
2 | rdesktop: A Remote Desktop Protocol client.
|
---|
3 | Miscellaneous protocol constants
|
---|
4 | Copyright (C) Matthew Chapman 1999-2008
|
---|
5 |
|
---|
6 | This program is free software: you can redistribute it and/or modify
|
---|
7 | it under the terms of the GNU General Public License as published by
|
---|
8 | the Free Software Foundation, either version 3 of the License, or
|
---|
9 | (at your option) any later version.
|
---|
10 |
|
---|
11 | This program is distributed in the hope that it will be useful,
|
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | GNU General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License
|
---|
17 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
18 | */
|
---|
19 |
|
---|
20 | /*
|
---|
21 | * Oracle GPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
22 | * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
|
---|
23 | * the General Public License version 2 (GPLv2) at this time for any software where
|
---|
24 | * a choice of GPL license versions is made available with the language indicating
|
---|
25 | * that GPLv2 or any later version may be used, or where a choice of which version
|
---|
26 | * of the GPL is applied is otherwise unspecified.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /* TCP port for Remote Desktop Protocol */
|
---|
30 | #define TCP_PORT_RDP 3389
|
---|
31 |
|
---|
32 | #define DEFAULT_CODEPAGE "UTF-8"
|
---|
33 | #define WINDOWS_CODEPAGE "UTF-16LE"
|
---|
34 |
|
---|
35 | /* ISO PDU codes */
|
---|
36 | enum ISO_PDU_CODE
|
---|
37 | {
|
---|
38 | ISO_PDU_CR = 0xE0, /* Connection Request */
|
---|
39 | ISO_PDU_CC = 0xD0, /* Connection Confirm */
|
---|
40 | ISO_PDU_DR = 0x80, /* Disconnect Request */
|
---|
41 | ISO_PDU_DT = 0xF0, /* Data */
|
---|
42 | ISO_PDU_ER = 0x70 /* Error */
|
---|
43 | };
|
---|
44 |
|
---|
45 | /* MCS PDU codes */
|
---|
46 | enum MCS_PDU_TYPE
|
---|
47 | {
|
---|
48 | MCS_EDRQ = 1, /* Erect Domain Request */
|
---|
49 | MCS_DPUM = 8, /* Disconnect Provider Ultimatum */
|
---|
50 | MCS_AURQ = 10, /* Attach User Request */
|
---|
51 | MCS_AUCF = 11, /* Attach User Confirm */
|
---|
52 | MCS_CJRQ = 14, /* Channel Join Request */
|
---|
53 | MCS_CJCF = 15, /* Channel Join Confirm */
|
---|
54 | MCS_SDRQ = 25, /* Send Data Request */
|
---|
55 | MCS_SDIN = 26 /* Send Data Indication */
|
---|
56 | };
|
---|
57 |
|
---|
58 | #define MCS_CONNECT_INITIAL 0x7f65
|
---|
59 | #define MCS_CONNECT_RESPONSE 0x7f66
|
---|
60 |
|
---|
61 | #define BER_TAG_BOOLEAN 1
|
---|
62 | #define BER_TAG_INTEGER 2
|
---|
63 | #define BER_TAG_OCTET_STRING 4
|
---|
64 | #define BER_TAG_RESULT 10
|
---|
65 | #define MCS_TAG_DOMAIN_PARAMS 0x30
|
---|
66 |
|
---|
67 | #define MCS_GLOBAL_CHANNEL 1003
|
---|
68 | #define MCS_USERCHANNEL_BASE 1001
|
---|
69 |
|
---|
70 | /* RDP secure transport constants */
|
---|
71 | #define SEC_RANDOM_SIZE 32
|
---|
72 | #define SEC_MODULUS_SIZE 64
|
---|
73 | #define SEC_MAX_MODULUS_SIZE 256
|
---|
74 | #define SEC_PADDING_SIZE 8
|
---|
75 | #define SEC_EXPONENT_SIZE 4
|
---|
76 |
|
---|
77 | #define SEC_CLIENT_RANDOM 0x0001
|
---|
78 | #define SEC_ENCRYPT 0x0008
|
---|
79 | #define SEC_LOGON_INFO 0x0040
|
---|
80 | #define SEC_LICENCE_NEG 0x0080
|
---|
81 | #define SEC_REDIRECT_ENCRYPT 0x0C00
|
---|
82 |
|
---|
83 | #define SEC_TAG_SRV_INFO 0x0c01
|
---|
84 | #define SEC_TAG_SRV_CRYPT 0x0c02
|
---|
85 | #define SEC_TAG_SRV_CHANNELS 0x0c03
|
---|
86 |
|
---|
87 | #define SEC_TAG_CLI_INFO 0xc001
|
---|
88 | #define SEC_TAG_CLI_CRYPT 0xc002
|
---|
89 | #define SEC_TAG_CLI_CHANNELS 0xc003
|
---|
90 | #define SEC_TAG_CLI_4 0xc004
|
---|
91 |
|
---|
92 | #define SEC_TAG_PUBKEY 0x0006
|
---|
93 | #define SEC_TAG_KEYSIG 0x0008
|
---|
94 |
|
---|
95 | #define SEC_RSA_MAGIC 0x31415352 /* RSA1 */
|
---|
96 |
|
---|
97 | /* RDP licensing constants */
|
---|
98 | #define LICENCE_TOKEN_SIZE 10
|
---|
99 | #define LICENCE_HWID_SIZE 20
|
---|
100 | #define LICENCE_SIGNATURE_SIZE 16
|
---|
101 |
|
---|
102 | #define LICENCE_TAG_DEMAND 0x01
|
---|
103 | #define LICENCE_TAG_AUTHREQ 0x02
|
---|
104 | #define LICENCE_TAG_ISSUE 0x03
|
---|
105 | #define LICENCE_TAG_REISSUE 0x04
|
---|
106 | #define LICENCE_TAG_PRESENT 0x12
|
---|
107 | #define LICENCE_TAG_REQUEST 0x13
|
---|
108 | #define LICENCE_TAG_AUTHRESP 0x15
|
---|
109 | #define LICENCE_TAG_RESULT 0xff
|
---|
110 |
|
---|
111 | #define LICENCE_TAG_USER 0x000f
|
---|
112 | #define LICENCE_TAG_HOST 0x0010
|
---|
113 |
|
---|
114 | /* RDP PDU codes */
|
---|
115 | enum RDP_PDU_TYPE
|
---|
116 | {
|
---|
117 | RDP_PDU_DEMAND_ACTIVE = 1,
|
---|
118 | RDP_PDU_CONFIRM_ACTIVE = 3,
|
---|
119 | RDP_PDU_REDIRECT = 4, /* MS Server 2003 Session Redirect */
|
---|
120 | RDP_PDU_DEACTIVATE = 6,
|
---|
121 | RDP_PDU_DATA = 7
|
---|
122 | };
|
---|
123 |
|
---|
124 | enum RDP_DATA_PDU_TYPE
|
---|
125 | {
|
---|
126 | RDP_DATA_PDU_UPDATE = 2,
|
---|
127 | RDP_DATA_PDU_CONTROL = 20,
|
---|
128 | RDP_DATA_PDU_POINTER = 27,
|
---|
129 | RDP_DATA_PDU_INPUT = 28,
|
---|
130 | RDP_DATA_PDU_SYNCHRONISE = 31,
|
---|
131 | RDP_DATA_PDU_BELL = 34,
|
---|
132 | RDP_DATA_PDU_CLIENT_WINDOW_STATUS = 35,
|
---|
133 | RDP_DATA_PDU_LOGON = 38, /* PDUTYPE2_SAVE_SESSION_INFO */
|
---|
134 | RDP_DATA_PDU_FONT2 = 39,
|
---|
135 | RDP_DATA_PDU_KEYBOARD_INDICATORS = 41,
|
---|
136 | RDP_DATA_PDU_DISCONNECT = 47
|
---|
137 | };
|
---|
138 |
|
---|
139 | enum RDP_SAVE_SESSION_PDU_TYPE
|
---|
140 | {
|
---|
141 | INFOTYPE_LOGON = 0,
|
---|
142 | INFOTYPE_LOGON_LONG = 1,
|
---|
143 | INFOTYPE_LOGON_PLAINNOTIFY = 2,
|
---|
144 | INFOTYPE_LOGON_EXTENDED_INF = 3
|
---|
145 | };
|
---|
146 |
|
---|
147 | enum RDP_LOGON_INFO_EXTENDED_TYPE
|
---|
148 | {
|
---|
149 | LOGON_EX_AUTORECONNECTCOOKIE = 1,
|
---|
150 | LOGON_EX_LOGONERRORS = 2
|
---|
151 | };
|
---|
152 |
|
---|
153 | enum RDP_CONTROL_PDU_TYPE
|
---|
154 | {
|
---|
155 | RDP_CTL_REQUEST_CONTROL = 1,
|
---|
156 | RDP_CTL_GRANT_CONTROL = 2,
|
---|
157 | RDP_CTL_DETACH = 3,
|
---|
158 | RDP_CTL_COOPERATE = 4
|
---|
159 | };
|
---|
160 |
|
---|
161 | enum RDP_UPDATE_PDU_TYPE
|
---|
162 | {
|
---|
163 | RDP_UPDATE_ORDERS = 0,
|
---|
164 | RDP_UPDATE_BITMAP = 1,
|
---|
165 | RDP_UPDATE_PALETTE = 2,
|
---|
166 | RDP_UPDATE_SYNCHRONIZE = 3
|
---|
167 | };
|
---|
168 |
|
---|
169 | enum RDP_POINTER_PDU_TYPE
|
---|
170 | {
|
---|
171 | RDP_POINTER_SYSTEM = 1,
|
---|
172 | RDP_POINTER_MOVE = 3,
|
---|
173 | RDP_POINTER_COLOR = 6,
|
---|
174 | RDP_POINTER_CACHED = 7,
|
---|
175 | RDP_POINTER_NEW = 8
|
---|
176 | };
|
---|
177 |
|
---|
178 | enum RDP_SYSTEM_POINTER_TYPE
|
---|
179 | {
|
---|
180 | RDP_NULL_POINTER = 0,
|
---|
181 | RDP_DEFAULT_POINTER = 0x7F00
|
---|
182 | };
|
---|
183 |
|
---|
184 | enum RDP_INPUT_DEVICE
|
---|
185 | {
|
---|
186 | RDP_INPUT_SYNCHRONIZE = 0,
|
---|
187 | RDP_INPUT_CODEPOINT = 1,
|
---|
188 | RDP_INPUT_VIRTKEY = 2,
|
---|
189 | RDP_INPUT_SCANCODE = 4,
|
---|
190 | RDP_INPUT_MOUSE = 0x8001
|
---|
191 | };
|
---|
192 |
|
---|
193 | /* Device flags */
|
---|
194 | #define KBD_FLAG_RIGHT 0x0001
|
---|
195 | #define KBD_FLAG_EXT 0x0100
|
---|
196 | #define KBD_FLAG_EXT2 0x0200
|
---|
197 | #define KBD_FLAG_QUIET 0x1000
|
---|
198 | #define KBD_FLAG_DOWN 0x4000
|
---|
199 | #define KBD_FLAG_UP 0x8000
|
---|
200 |
|
---|
201 | /* These are for synchronization; not for keystrokes */
|
---|
202 | #define KBD_FLAG_SCROLL 0x0001
|
---|
203 | #define KBD_FLAG_NUMLOCK 0x0002
|
---|
204 | #define KBD_FLAG_CAPITAL 0x0004
|
---|
205 |
|
---|
206 | /* See T.128 */
|
---|
207 | #define RDP_KEYPRESS 0
|
---|
208 | #define RDP_KEYRELEASE (KBD_FLAG_DOWN | KBD_FLAG_UP)
|
---|
209 |
|
---|
210 | #define MOUSE_FLAG_MOVE 0x0800
|
---|
211 | #define MOUSE_FLAG_BUTTON1 0x1000
|
---|
212 | #define MOUSE_FLAG_BUTTON2 0x2000
|
---|
213 | #define MOUSE_FLAG_BUTTON3 0x4000
|
---|
214 | #define MOUSE_FLAG_BUTTON4 0x0280
|
---|
215 | #define MOUSE_FLAG_BUTTON5 0x0380
|
---|
216 | #define MOUSE_FLAG_DOWN 0x8000
|
---|
217 |
|
---|
218 | /* Raster operation masks */
|
---|
219 | #define ROP2_S(rop3) (rop3 & 0xf)
|
---|
220 | #define ROP2_P(rop3) ((rop3 & 0x3) | ((rop3 & 0x30) >> 2))
|
---|
221 |
|
---|
222 | #define ROP2_COPY 0xc
|
---|
223 | #define ROP2_XOR 0x6
|
---|
224 | #define ROP2_AND 0x8
|
---|
225 | #define ROP2_NXOR 0x9
|
---|
226 | #define ROP2_OR 0xe
|
---|
227 |
|
---|
228 | #define MIX_TRANSPARENT 0
|
---|
229 | #define MIX_OPAQUE 1
|
---|
230 |
|
---|
231 | #define TEXT2_VERTICAL 0x04
|
---|
232 | #define TEXT2_IMPLICIT_X 0x20
|
---|
233 |
|
---|
234 | #define ALTERNATE 1
|
---|
235 | #define WINDING 2
|
---|
236 |
|
---|
237 | /* RDP bitmap cache (version 2) constants */
|
---|
238 | #define BMPCACHE2_C0_CELLS 0x78
|
---|
239 | #define BMPCACHE2_C1_CELLS 0x78
|
---|
240 | #define BMPCACHE2_C2_CELLS 0x150
|
---|
241 | #define BMPCACHE2_NUM_PSTCELLS 0x9f6
|
---|
242 |
|
---|
243 | #define PDU_FLAG_FIRST 0x01
|
---|
244 | #define PDU_FLAG_LAST 0x02
|
---|
245 |
|
---|
246 | /* RDP capabilities */
|
---|
247 | #define RDP_CAPSET_GENERAL 1 /* Maps to generalCapabilitySet in T.128 page 138 */
|
---|
248 | #define RDP_CAPLEN_GENERAL 0x18
|
---|
249 | #define OS_MAJOR_TYPE_UNIX 4
|
---|
250 | #define OS_MINOR_TYPE_XSERVER 7
|
---|
251 |
|
---|
252 | #define RDP_CAPSET_BITMAP 2
|
---|
253 | #define RDP_CAPLEN_BITMAP 0x1C
|
---|
254 |
|
---|
255 | #define RDP_CAPSET_ORDER 3
|
---|
256 | #define RDP_CAPLEN_ORDER 0x58
|
---|
257 | #define ORDER_CAP_NEGOTIATE 2
|
---|
258 | #define ORDER_CAP_NOSUPPORT 4
|
---|
259 |
|
---|
260 | #define RDP_CAPSET_BMPCACHE 4
|
---|
261 | #define RDP_CAPLEN_BMPCACHE 0x28
|
---|
262 |
|
---|
263 | #define RDP_CAPSET_CONTROL 5
|
---|
264 | #define RDP_CAPLEN_CONTROL 0x0C
|
---|
265 |
|
---|
266 | #define RDP_CAPSET_ACTIVATE 7
|
---|
267 | #define RDP_CAPLEN_ACTIVATE 0x0C
|
---|
268 |
|
---|
269 | #define RDP_CAPSET_POINTER 8
|
---|
270 | #define RDP_CAPLEN_POINTER 0x08
|
---|
271 | #define RDP_CAPLEN_NEWPOINTER 0x0a
|
---|
272 |
|
---|
273 | #define RDP_CAPSET_SHARE 9
|
---|
274 | #define RDP_CAPLEN_SHARE 0x08
|
---|
275 |
|
---|
276 | #define RDP_CAPSET_COLCACHE 10
|
---|
277 | #define RDP_CAPLEN_COLCACHE 0x08
|
---|
278 |
|
---|
279 | #define RDP_CAPSET_BRUSHCACHE 15
|
---|
280 | #define RDP_CAPLEN_BRUSHCACHE 0x08
|
---|
281 |
|
---|
282 | #define RDP_CAPSET_BMPCACHE2 19
|
---|
283 | #define RDP_CAPLEN_BMPCACHE2 0x28
|
---|
284 | #define BMPCACHE2_FLAG_PERSIST ((uint32)1<<31)
|
---|
285 |
|
---|
286 | #define RDP_SOURCE "MSTSC"
|
---|
287 |
|
---|
288 | /* Logon flags */
|
---|
289 | #define RDP_LOGON_AUTO 0x0008
|
---|
290 | #define RDP_LOGON_NORMAL 0x0033
|
---|
291 | #define RDP_LOGON_COMPRESSION 0x0080 /* mppc compression with 8kB histroy buffer */
|
---|
292 | #define RDP_LOGON_BLOB 0x0100
|
---|
293 | #define RDP_LOGON_COMPRESSION2 0x0200 /* rdp5 mppc compression with 64kB history buffer */
|
---|
294 | #define RDP_LOGON_LEAVE_AUDIO 0x2000
|
---|
295 |
|
---|
296 | #define RDP5_DISABLE_NOTHING 0x00
|
---|
297 | #define RDP5_NO_WALLPAPER 0x01
|
---|
298 | #define RDP5_NO_FULLWINDOWDRAG 0x02
|
---|
299 | #define RDP5_NO_MENUANIMATIONS 0x04
|
---|
300 | #define RDP5_NO_THEMING 0x08
|
---|
301 | #define RDP5_NO_CURSOR_SHADOW 0x20
|
---|
302 | #define RDP5_NO_CURSORSETTINGS 0x40 /* disables cursor blinking */
|
---|
303 |
|
---|
304 | /* compression types */
|
---|
305 | #define RDP_MPPC_BIG 0x01
|
---|
306 | #define RDP_MPPC_COMPRESSED 0x20
|
---|
307 | #define RDP_MPPC_RESET 0x40
|
---|
308 | #define RDP_MPPC_FLUSH 0x80
|
---|
309 | #define RDP_MPPC_DICT_SIZE 65536
|
---|
310 |
|
---|
311 | #define RDP5_COMPRESSED 0x80
|
---|
312 |
|
---|
313 | /* Keymap flags */
|
---|
314 | #define MapRightShiftMask (1<<0)
|
---|
315 | #define MapLeftShiftMask (1<<1)
|
---|
316 | #define MapShiftMask (MapRightShiftMask | MapLeftShiftMask)
|
---|
317 |
|
---|
318 | #define MapRightAltMask (1<<2)
|
---|
319 | #define MapLeftAltMask (1<<3)
|
---|
320 | #define MapAltGrMask MapRightAltMask
|
---|
321 |
|
---|
322 | #define MapRightCtrlMask (1<<4)
|
---|
323 | #define MapLeftCtrlMask (1<<5)
|
---|
324 | #define MapCtrlMask (MapRightCtrlMask | MapLeftCtrlMask)
|
---|
325 |
|
---|
326 | #define MapRightWinMask (1<<6)
|
---|
327 | #define MapLeftWinMask (1<<7)
|
---|
328 | #define MapWinMask (MapRightWinMask | MapLeftWinMask)
|
---|
329 |
|
---|
330 | #define MapNumLockMask (1<<8)
|
---|
331 | #define MapCapsLockMask (1<<9)
|
---|
332 |
|
---|
333 | #define MapLocalStateMask (1<<10)
|
---|
334 |
|
---|
335 | #define MapInhibitMask (1<<11)
|
---|
336 |
|
---|
337 | #define MASK_ADD_BITS(var, mask) (var |= mask)
|
---|
338 | #define MASK_REMOVE_BITS(var, mask) (var &= ~mask)
|
---|
339 | #define MASK_HAS_BITS(var, mask) ((var & mask)>0)
|
---|
340 | #define MASK_CHANGE_BIT(var, mask, active) (var = ((var & ~mask) | (active ? mask : 0)))
|
---|
341 |
|
---|
342 | /* Clipboard constants, "borrowed" from GCC system headers in
|
---|
343 | the w32 cross compiler
|
---|
344 | this is the CF_ set when WINVER is 0x0400 */
|
---|
345 |
|
---|
346 | #ifndef CF_TEXT
|
---|
347 | #define CF_TEXT 1
|
---|
348 | #define CF_BITMAP 2
|
---|
349 | #define CF_METAFILEPICT 3
|
---|
350 | #define CF_SYLK 4
|
---|
351 | #define CF_DIF 5
|
---|
352 | #define CF_TIFF 6
|
---|
353 | #define CF_OEMTEXT 7
|
---|
354 | #define CF_DIB 8
|
---|
355 | #define CF_PALETTE 9
|
---|
356 | #define CF_PENDATA 10
|
---|
357 | #define CF_RIFF 11
|
---|
358 | #define CF_WAVE 12
|
---|
359 | #define CF_UNICODETEXT 13
|
---|
360 | #define CF_ENHMETAFILE 14
|
---|
361 | #define CF_HDROP 15
|
---|
362 | #define CF_LOCALE 16
|
---|
363 | #define CF_MAX 17
|
---|
364 | #define CF_OWNERDISPLAY 128
|
---|
365 | #define CF_DSPTEXT 129
|
---|
366 | #define CF_DSPBITMAP 130
|
---|
367 | #define CF_DSPMETAFILEPICT 131
|
---|
368 | #define CF_DSPENHMETAFILE 142
|
---|
369 | #define CF_PRIVATEFIRST 512
|
---|
370 | #define CF_PRIVATELAST 767
|
---|
371 | #define CF_GDIOBJFIRST 768
|
---|
372 | #define CF_GDIOBJLAST 1023
|
---|
373 | #endif
|
---|
374 |
|
---|
375 | /* Sound format constants */
|
---|
376 | #define WAVE_FORMAT_PCM 1
|
---|
377 | #define WAVE_FORMAT_ADPCM 2
|
---|
378 | #define WAVE_FORMAT_ALAW 6
|
---|
379 | #define WAVE_FORMAT_MULAW 7
|
---|
380 |
|
---|
381 | /* Virtual channel options */
|
---|
382 | #define CHANNEL_OPTION_INITIALIZED 0x80000000
|
---|
383 | #define CHANNEL_OPTION_ENCRYPT_RDP 0x40000000
|
---|
384 | #define CHANNEL_OPTION_COMPRESS_RDP 0x00800000
|
---|
385 | #define CHANNEL_OPTION_SHOW_PROTOCOL 0x00200000
|
---|
386 |
|
---|
387 | /* NT status codes for RDPDR */
|
---|
388 | #define RD_STATUS_SUCCESS 0x00000000
|
---|
389 | #define RD_STATUS_NOT_IMPLEMENTED 0x00000001
|
---|
390 | #define RD_STATUS_PENDING 0x00000103
|
---|
391 |
|
---|
392 | #define RD_STATUS_NO_MORE_FILES 0x80000006
|
---|
393 | #define RD_STATUS_DEVICE_PAPER_EMPTY 0x8000000e
|
---|
394 | #define RD_STATUS_DEVICE_POWERED_OFF 0x8000000f
|
---|
395 | #define RD_STATUS_DEVICE_OFF_LINE 0x80000010
|
---|
396 | #define RD_STATUS_DEVICE_BUSY 0x80000011
|
---|
397 |
|
---|
398 | #define RD_STATUS_INVALID_HANDLE 0xc0000008
|
---|
399 | #define RD_STATUS_INVALID_PARAMETER 0xc000000d
|
---|
400 | #define RD_STATUS_NO_SUCH_FILE 0xc000000f
|
---|
401 | #define RD_STATUS_INVALID_DEVICE_REQUEST 0xc0000010
|
---|
402 | #define RD_STATUS_ACCESS_DENIED 0xc0000022
|
---|
403 | #define RD_STATUS_OBJECT_NAME_COLLISION 0xc0000035
|
---|
404 | #define RD_STATUS_DISK_FULL 0xc000007f
|
---|
405 | #define RD_STATUS_FILE_IS_A_DIRECTORY 0xc00000ba
|
---|
406 | #define RD_STATUS_NOT_SUPPORTED 0xc00000bb
|
---|
407 | #define RD_STATUS_TIMEOUT 0xc0000102
|
---|
408 | #define RD_STATUS_NOTIFY_ENUM_DIR 0xc000010c
|
---|
409 | #define RD_STATUS_CANCELLED 0xc0000120
|
---|
410 | #define RD_STATUS_DIRECTORY_NOT_EMPTY 0xc0000101
|
---|
411 |
|
---|
412 |
|
---|
413 | /* RDPDR constants */
|
---|
414 | #define RDPDR_MAX_DEVICES 0x10
|
---|
415 | #define DEVICE_TYPE_SERIAL 0x01
|
---|
416 | #define DEVICE_TYPE_PARALLEL 0x02
|
---|
417 | #define DEVICE_TYPE_PRINTER 0x04
|
---|
418 | #define DEVICE_TYPE_DISK 0x08
|
---|
419 | #define DEVICE_TYPE_SCARD 0x20
|
---|
420 |
|
---|
421 | #define FILE_DIRECTORY_FILE 0x00000001
|
---|
422 | #define FILE_NON_DIRECTORY_FILE 0x00000040
|
---|
423 | #define FILE_COMPLETE_IF_OPLOCKED 0x00000100
|
---|
424 | #define FILE_DELETE_ON_CLOSE 0x00001000
|
---|
425 | #define FILE_OPEN_FOR_FREE_SPACE_QUERY 0x00800000
|
---|
426 |
|
---|
427 | /* RDP5 disconnect PDU */
|
---|
428 | #define exDiscReasonNoInfo 0x0000
|
---|
429 | #define exDiscReasonAPIInitiatedDisconnect 0x0001
|
---|
430 | #define exDiscReasonAPIInitiatedLogoff 0x0002
|
---|
431 | #define exDiscReasonServerIdleTimeout 0x0003
|
---|
432 | #define exDiscReasonServerLogonTimeout 0x0004
|
---|
433 | #define exDiscReasonReplacedByOtherConnection 0x0005
|
---|
434 | #define exDiscReasonOutOfMemory 0x0006
|
---|
435 | #define exDiscReasonServerDeniedConnection 0x0007
|
---|
436 | #define exDiscReasonServerDeniedConnectionFips 0x0008
|
---|
437 | #define exDiscReasonWindows7Disconnect 0x000b /* unofficial */
|
---|
438 | #define exDiscReasonLicenseInternal 0x0100
|
---|
439 | #define exDiscReasonLicenseNoLicenseServer 0x0101
|
---|
440 | #define exDiscReasonLicenseNoLicense 0x0102
|
---|
441 | #define exDiscReasonLicenseErrClientMsg 0x0103
|
---|
442 | #define exDiscReasonLicenseHwidDoesntMatchLicense 0x0104
|
---|
443 | #define exDiscReasonLicenseErrClientLicense 0x0105
|
---|
444 | #define exDiscReasonLicenseCantFinishProtocol 0x0106
|
---|
445 | #define exDiscReasonLicenseClientEndedProtocol 0x0107
|
---|
446 | #define exDiscReasonLicenseErrClientEncryption 0x0108
|
---|
447 | #define exDiscReasonLicenseCantUpgradeLicense 0x0109
|
---|
448 | #define exDiscReasonLicenseNoRemoteConnections 0x010a
|
---|
449 |
|
---|
450 | /* SeamlessRDP constants */
|
---|
451 | #define SEAMLESSRDP_NOTYETMAPPED -1
|
---|
452 | #define SEAMLESSRDP_NORMAL 0
|
---|
453 | #define SEAMLESSRDP_MINIMIZED 1
|
---|
454 | #define SEAMLESSRDP_MAXIMIZED 2
|
---|
455 | #define SEAMLESSRDP_POSITION_TIMER 200000
|
---|
456 |
|
---|
457 | #define SEAMLESSRDP_CREATE_MODAL 0x0001
|
---|
458 | #define SEAMLESSRDP_CREATE_TOPMOST 0x0002
|
---|
459 |
|
---|
460 | #define SEAMLESSRDP_HELLO_RECONNECT 0x0001
|
---|
461 | #define SEAMLESSRDP_HELLO_HIDDEN 0x0002
|
---|
462 |
|
---|
463 | /* Smartcard constants */
|
---|
464 | #define SCARD_LOCK_TCP 0
|
---|
465 | #define SCARD_LOCK_SEC 1
|
---|
466 | #define SCARD_LOCK_CHANNEL 2
|
---|
467 | #define SCARD_LOCK_RDPDR 3
|
---|
468 | #define SCARD_LOCK_LAST 4
|
---|
469 |
|
---|
470 |
|
---|
471 | /* redirect flags, from [MS-RDPBCGR] 2.2.13.1 */
|
---|
472 | enum RDP_PDU_REDIRECT_FLAGS
|
---|
473 | {
|
---|
474 | PDU_REDIRECT_HAS_IP = 0x1,
|
---|
475 | PDU_REDIRECT_HAS_COOKIE = 0x2,
|
---|
476 | PDU_REDIRECT_HAS_USERNAME = 0x4,
|
---|
477 | PDU_REDIRECT_HAS_DOMAIN = 0x8,
|
---|
478 | PDU_REDIRECT_HAS_PASSWORD = 0x10,
|
---|
479 | PDU_REDIRECT_DONT_STORE_USERNAME = 0x20,
|
---|
480 | PDU_REDIRECT_USE_SMARTCARD = 0x40,
|
---|
481 | PDU_REDIRECT_INFORMATIONAL = 0x80,
|
---|
482 | PDU_REDIRECT_HAS_TARGET_FQDN = 0x100,
|
---|
483 | PDU_REDIRECT_HAS_TARGET_NETBIOS = 0x200,
|
---|
484 | PDU_REDIRECT_HAS_TARGET_IP_ARRAY = 0x800
|
---|
485 | };
|
---|