2011-07-03 09:50:11 +08:00
|
|
|
/**
|
2012-10-08 23:02:04 -04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-03 09:50:11 +08:00
|
|
|
* Network Transport Layer
|
|
|
|
*
|
|
|
|
* Copyright 2011 Vic Lee
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-07-03 10:59:07 +08:00
|
|
|
#ifndef __TRANSPORT_H
|
|
|
|
#define __TRANSPORT_H
|
2011-07-03 09:50:11 +08:00
|
|
|
|
2011-07-10 15:34:43 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TRANSPORT_LAYER_TCP,
|
2011-08-25 13:30:17 +08:00
|
|
|
TRANSPORT_LAYER_TLS,
|
2012-03-26 12:20:38 -04:00
|
|
|
TRANSPORT_LAYER_TSG,
|
2013-10-11 06:12:50 -04:00
|
|
|
TRANSPORT_LAYER_TSG_TLS,
|
2011-08-25 13:30:17 +08:00
|
|
|
TRANSPORT_LAYER_CLOSED
|
2011-07-10 15:34:43 -04:00
|
|
|
} TRANSPORT_LAYER;
|
|
|
|
|
2011-07-07 13:37:48 -04:00
|
|
|
typedef struct rdp_transport rdpTransport;
|
|
|
|
|
2011-07-03 15:34:15 -04:00
|
|
|
#include "tcp.h"
|
2012-11-14 21:19:17 -05:00
|
|
|
#include "nla.h"
|
2012-05-04 19:48:53 -04:00
|
|
|
|
2012-12-12 23:18:20 -05:00
|
|
|
#include "gateway/tsg.h"
|
2015-03-17 14:54:16 -04:00
|
|
|
#include "gateway/rdg.h"
|
2012-12-12 23:18:20 -05:00
|
|
|
|
2012-05-04 19:48:53 -04:00
|
|
|
#include <winpr/sspi.h>
|
2013-10-08 23:43:57 -04:00
|
|
|
#include <winpr/wlog.h>
|
2013-03-27 13:03:41 -04:00
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/thread.h>
|
|
|
|
#include <winpr/stream.h>
|
2012-12-21 15:36:10 -05:00
|
|
|
#include <winpr/collections.h>
|
|
|
|
|
2012-02-17 00:58:30 -05:00
|
|
|
#include <freerdp/crypto/tls.h>
|
2011-07-03 15:34:15 -04:00
|
|
|
|
2011-07-03 12:42:35 -04:00
|
|
|
#include <time.h>
|
2011-07-07 13:37:48 -04:00
|
|
|
#include <freerdp/types.h>
|
2011-07-05 23:18:00 -04:00
|
|
|
#include <freerdp/settings.h>
|
2013-03-21 16:45:25 -04:00
|
|
|
|
2014-05-21 17:32:14 +02:00
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
typedef int (*TransportRecv) (rdpTransport* transport, wStream* stream, void* extra);
|
2011-07-03 09:50:11 +08:00
|
|
|
|
2011-07-03 10:59:07 +08:00
|
|
|
struct rdp_transport
|
2011-07-03 09:50:11 +08:00
|
|
|
{
|
2011-07-10 15:34:43 -04:00
|
|
|
TRANSPORT_LAYER layer;
|
2015-01-28 13:46:17 -05:00
|
|
|
BIO* frontBio;
|
2015-03-17 14:54:16 -04:00
|
|
|
rdpRdg* rdg;
|
2012-11-14 20:46:51 -05:00
|
|
|
rdpTsg* tsg;
|
2015-02-11 14:27:29 -05:00
|
|
|
rdpTls* tls;
|
2014-12-15 09:42:04 -05:00
|
|
|
rdpContext* context;
|
2015-02-15 11:10:14 -05:00
|
|
|
rdpNla* nla;
|
2012-11-14 20:46:51 -05:00
|
|
|
rdpSettings* settings;
|
2012-12-21 15:49:02 -05:00
|
|
|
void* ReceiveExtra;
|
2013-03-21 15:19:33 -04:00
|
|
|
wStream* ReceiveBuffer;
|
2012-12-21 15:49:02 -05:00
|
|
|
TransportRecv ReceiveCallback;
|
2013-04-12 13:44:23 -04:00
|
|
|
wStreamPool* ReceivePool;
|
2013-04-30 18:25:18 -04:00
|
|
|
HANDLE connectedEvent;
|
2013-03-27 13:03:41 -04:00
|
|
|
HANDLE stopEvent;
|
|
|
|
HANDLE thread;
|
|
|
|
BOOL async;
|
2014-03-27 14:24:15 -04:00
|
|
|
BOOL NlaMode;
|
2015-02-15 10:06:17 -05:00
|
|
|
BOOL blocking;
|
2014-03-24 14:44:18 -04:00
|
|
|
BOOL GatewayEnabled;
|
2013-11-07 15:14:59 -05:00
|
|
|
CRITICAL_SECTION ReadLock;
|
|
|
|
CRITICAL_SECTION WriteLock;
|
2015-04-14 03:49:01 -07:00
|
|
|
ULONG written;
|
2011-07-03 09:50:11 +08:00
|
|
|
};
|
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
wStream* transport_send_stream_init(rdpTransport* transport, int size);
|
2014-05-30 14:03:20 -04:00
|
|
|
BOOL transport_connect(rdpTransport* transport, const char* hostname, UINT16 port, int timeout);
|
2015-02-14 10:14:13 -05:00
|
|
|
BOOL transport_attach(rdpTransport* transport, int sockfd);
|
2012-10-09 02:38:39 -04:00
|
|
|
BOOL transport_disconnect(rdpTransport* transport);
|
|
|
|
BOOL transport_connect_rdp(rdpTransport* transport);
|
|
|
|
BOOL transport_connect_tls(rdpTransport* transport);
|
|
|
|
BOOL transport_connect_nla(rdpTransport* transport);
|
|
|
|
BOOL transport_accept_rdp(rdpTransport* transport);
|
|
|
|
BOOL transport_accept_tls(rdpTransport* transport);
|
|
|
|
BOOL transport_accept_nla(rdpTransport* transport);
|
2014-03-18 15:27:23 -04:00
|
|
|
void transport_stop(rdpTransport* transport);
|
2014-07-22 11:19:38 +02:00
|
|
|
int transport_read_pdu(rdpTransport* transport, wStream* s);
|
2013-03-21 15:19:33 -04:00
|
|
|
int transport_write(rdpTransport* transport, wStream* s);
|
2015-01-29 22:57:58 -05:00
|
|
|
|
2011-08-20 20:30:18 +08:00
|
|
|
void transport_get_fds(rdpTransport* transport, void** rfds, int* rcount);
|
2013-11-03 16:25:56 -05:00
|
|
|
int transport_check_fds(rdpTransport* transport);
|
2015-01-29 22:57:58 -05:00
|
|
|
|
2015-04-21 12:24:50 +02:00
|
|
|
DWORD transport_get_event_handles(rdpTransport* transport, HANDLE* events, DWORD nCount);
|
2015-01-29 22:57:58 -05:00
|
|
|
|
2012-10-09 02:38:39 -04:00
|
|
|
BOOL transport_set_blocking_mode(rdpTransport* transport, BOOL blocking);
|
2014-03-25 15:19:52 -04:00
|
|
|
void transport_set_gateway_enabled(rdpTransport* transport, BOOL GatewayEnabled);
|
2014-03-27 14:24:15 -04:00
|
|
|
void transport_set_nla_mode(rdpTransport* transport, BOOL NlaMode);
|
2015-02-17 10:54:39 -05:00
|
|
|
BOOL transport_is_write_blocked(rdpTransport* transport);
|
|
|
|
int transport_drain_output_buffer(rdpTransport* transport);
|
2012-12-21 15:36:10 -05:00
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
wStream* transport_receive_pool_take(rdpTransport* transport);
|
|
|
|
int transport_receive_pool_return(rdpTransport* transport, wStream* pdu);
|
2012-12-21 15:36:10 -05:00
|
|
|
|
2014-12-15 10:23:06 -05:00
|
|
|
rdpTransport* transport_new(rdpContext* context);
|
2011-07-10 15:34:43 -04:00
|
|
|
void transport_free(rdpTransport* transport);
|
2011-07-03 09:50:11 +08:00
|
|
|
|
|
|
|
#endif
|