8203336b149371ba189d4da359c4147bfe3484d1
[platform/upstream/freerdp.git] / libfreerdp / core / redirection.h
1 /**
2  * FreeRDP: A Remote Desktop Protocol Implementation
3  * RDP Server Redirection
4  *
5  * Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #ifndef __REDIRECTION_H
21 #define __REDIRECTION_H
22
23 #include "rdp.h"
24
25 #include <freerdp/freerdp.h>
26 #include <freerdp/utils/debug.h>
27
28 #include <winpr/wlog.h>
29 #include <winpr/stream.h>
30
31 struct rdp_redirection
32 {
33         wLog* log;
34         UINT32 flags;
35         UINT32 sessionID;
36         char* TsvUrl;
37         char* Username;
38         char* Domain;
39         BYTE* PasswordCookie;
40         DWORD PasswordCookieLength;
41         char* TargetFQDN;
42         BYTE* LoadBalanceInfo;
43         DWORD LoadBalanceInfoLength;
44         char* TargetNetBiosName;
45         char* TargetNetAddress;
46         UINT32 TargetNetAddressesCount;
47         char** TargetNetAddresses;
48 };
49 typedef struct rdp_redirection rdpRedirection;
50
51 BOOL rdp_recv_redirection_packet(rdpRdp* rdp, wStream* s);
52 BOOL rdp_recv_enhanced_security_redirection_packet(rdpRdp* rdp, wStream* s);
53
54 rdpRedirection* redirection_new(void);
55 void redirection_free(rdpRedirection* redirection);
56
57 #ifdef WITH_DEBUG_REDIR
58 #define DEBUG_REDIR(fmt, ...) DEBUG_CLASS(REDIR, fmt, ## __VA_ARGS__)
59 #else
60 #define DEBUG_REDIR(fmt, ...) DEBUG_NULL(fmt, ## __VA_ARGS__)
61 #endif
62
63 #endif /* __REDIRECTION_H */