2011-07-03 05:50:11 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-03 05:50:11 +04: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 06:59:07 +04:00
|
|
|
#ifndef __TRANSPORT_H
|
|
|
|
#define __TRANSPORT_H
|
2011-07-03 05:50:11 +04:00
|
|
|
|
2011-07-10 23:34:43 +04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TRANSPORT_LAYER_TCP,
|
2011-08-25 09:30:17 +04:00
|
|
|
TRANSPORT_LAYER_TLS,
|
2012-03-26 20:20:38 +04:00
|
|
|
TRANSPORT_LAYER_TSG,
|
2011-08-25 09:30:17 +04:00
|
|
|
TRANSPORT_LAYER_CLOSED
|
2011-07-10 23:34:43 +04:00
|
|
|
} TRANSPORT_LAYER;
|
|
|
|
|
2011-07-07 21:37:48 +04:00
|
|
|
typedef struct rdp_transport rdpTransport;
|
|
|
|
|
2011-07-03 23:34:15 +04:00
|
|
|
#include "tcp.h"
|
2012-11-15 06:19:17 +04:00
|
|
|
#include "nla.h"
|
2012-05-05 03:48:53 +04:00
|
|
|
|
2012-12-13 08:18:20 +04:00
|
|
|
#include "gateway/tsg.h"
|
|
|
|
|
2012-05-05 03:48:53 +04:00
|
|
|
#include <winpr/sspi.h>
|
2012-12-22 00:36:10 +04:00
|
|
|
#include <winpr/collections.h>
|
|
|
|
|
2012-02-17 09:58:30 +04:00
|
|
|
#include <freerdp/crypto/tls.h>
|
2011-07-03 23:34:15 +04:00
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
#include <time.h>
|
2011-07-07 21:37:48 +04:00
|
|
|
#include <freerdp/types.h>
|
2011-07-06 07:18:00 +04:00
|
|
|
#include <freerdp/settings.h>
|
2011-07-03 05:50:11 +04:00
|
|
|
#include <freerdp/utils/stream.h>
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
typedef BOOL (*TransportRecv) (rdpTransport* transport, STREAM* stream, void* extra);
|
2011-07-03 05:50:11 +04:00
|
|
|
|
2011-07-03 06:59:07 +04:00
|
|
|
struct rdp_transport
|
2011-07-03 05:50:11 +04:00
|
|
|
{
|
2011-07-10 23:34:43 +04:00
|
|
|
TRANSPORT_LAYER layer;
|
2012-11-15 05:46:51 +04:00
|
|
|
rdpTsg* tsg;
|
|
|
|
rdpTcp* TcpIn;
|
|
|
|
rdpTcp* TcpOut;
|
|
|
|
rdpTls* TlsIn;
|
|
|
|
rdpTls* TlsOut;
|
|
|
|
rdpCredssp* credssp;
|
|
|
|
rdpSettings* settings;
|
2012-12-22 00:49:02 +04:00
|
|
|
UINT32 SleepInterval;
|
|
|
|
STREAM* SendStream;
|
|
|
|
STREAM* ReceiveStream;
|
|
|
|
void* ReceiveExtra;
|
|
|
|
STREAM* ReceiveBuffer;
|
|
|
|
TransportRecv ReceiveCallback;
|
|
|
|
HANDLE ReceiveEvent;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL blocking;
|
2012-11-15 05:46:51 +04:00
|
|
|
BOOL SplitInputOutput;
|
2012-12-22 00:36:10 +04:00
|
|
|
|
|
|
|
wQueue* ReceivePool;
|
|
|
|
wQueue* ReceiveQueue;
|
2011-07-03 05:50:11 +04:00
|
|
|
};
|
|
|
|
|
2011-07-10 23:34:43 +04:00
|
|
|
STREAM* transport_recv_stream_init(rdpTransport* transport, int size);
|
|
|
|
STREAM* transport_send_stream_init(rdpTransport* transport, int size);
|
2012-10-09 11:01:37 +04:00
|
|
|
BOOL transport_connect(rdpTransport* transport, const char* hostname, UINT16 port);
|
2011-08-18 19:15:28 +04:00
|
|
|
void transport_attach(rdpTransport* transport, int sockfd);
|
2012-10-09 10: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_connect_tsg(rdpTransport* transport);
|
|
|
|
BOOL transport_accept_rdp(rdpTransport* transport);
|
|
|
|
BOOL transport_accept_tls(rdpTransport* transport);
|
|
|
|
BOOL transport_accept_nla(rdpTransport* transport);
|
2011-07-10 23:34:43 +04:00
|
|
|
int transport_read(rdpTransport* transport, STREAM* s);
|
|
|
|
int transport_write(rdpTransport* transport, STREAM* s);
|
2011-08-20 16:30:18 +04:00
|
|
|
void transport_get_fds(rdpTransport* transport, void** rfds, int* rcount);
|
2012-03-16 21:12:49 +04:00
|
|
|
int transport_check_fds(rdpTransport** ptransport);
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL transport_set_blocking_mode(rdpTransport* transport, BOOL blocking);
|
2012-12-22 00:36:10 +04:00
|
|
|
|
|
|
|
STREAM* transport_receive_pool_take(rdpTransport* transport);
|
|
|
|
int transport_receive_pool_return(rdpTransport* transport, STREAM* pdu);
|
|
|
|
|
2011-07-10 23:34:43 +04:00
|
|
|
rdpTransport* transport_new(rdpSettings* settings);
|
|
|
|
void transport_free(rdpTransport* transport);
|
2011-07-03 05:50:11 +04:00
|
|
|
|
|
|
|
#endif
|