2011-07-03 23:34:15 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-03 23:34:15 +04:00
|
|
|
* Transmission Control Protocol (TCP)
|
|
|
|
*
|
|
|
|
* Copyright 2011 Vic Lee
|
|
|
|
* 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_TCP_H
|
|
|
|
#define FREERDP_LIB_CORE_TCP_H
|
2011-07-03 23:34:15 +04:00
|
|
|
|
2012-05-05 03:36:35 +04:00
|
|
|
#include <winpr/windows.h>
|
2011-08-17 01:40:29 +04:00
|
|
|
|
2011-07-07 21:37:48 +04:00
|
|
|
#include <freerdp/types.h>
|
2011-07-10 20:10:24 +04:00
|
|
|
#include <freerdp/settings.h>
|
2015-07-03 12:49:40 +03:00
|
|
|
#include <freerdp/freerdp.h>
|
2016-08-10 10:12:55 +03:00
|
|
|
#include <freerdp/api.h>
|
2013-03-22 00:45:25 +04:00
|
|
|
|
2013-05-01 01:16:38 +04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/synch.h>
|
2013-03-22 00:45:25 +04:00
|
|
|
#include <winpr/stream.h>
|
2013-12-19 07:02:59 +04:00
|
|
|
#include <winpr/winsock.h>
|
2017-01-09 18:43:28 +03:00
|
|
|
#include <winpr/crypto.h>
|
2011-07-03 23:34:15 +04:00
|
|
|
|
2014-05-21 19:32:14 +04:00
|
|
|
#include <openssl/bio.h>
|
|
|
|
|
2015-02-14 18:14:13 +03:00
|
|
|
#include <freerdp/utils/ringbuffer.h>
|
2011-07-11 22:30:27 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
#define BIO_TYPE_TSG 65
|
|
|
|
#define BIO_TYPE_SIMPLE 66
|
|
|
|
#define BIO_TYPE_BUFFERED 67
|
2014-05-21 19:32:14 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
#define BIO_C_SET_SOCKET 1101
|
|
|
|
#define BIO_C_GET_SOCKET 1102
|
|
|
|
#define BIO_C_GET_EVENT 1103
|
|
|
|
#define BIO_C_SET_NONBLOCK 1104
|
|
|
|
#define BIO_C_READ_BLOCKED 1105
|
|
|
|
#define BIO_C_WRITE_BLOCKED 1106
|
|
|
|
#define BIO_C_WAIT_READ 1107
|
|
|
|
#define BIO_C_WAIT_WRITE 1108
|
2015-01-28 22:54:03 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
#define BIO_set_socket(b, s, c) BIO_ctrl(b, BIO_C_SET_SOCKET, c, s);
|
|
|
|
#define BIO_get_socket(b, c) BIO_ctrl(b, BIO_C_GET_SOCKET, 0, (char*)c)
|
|
|
|
#define BIO_get_event(b, c) BIO_ctrl(b, BIO_C_GET_EVENT, 0, (char*)c)
|
|
|
|
#define BIO_set_nonblock(b, c) BIO_ctrl(b, BIO_C_SET_NONBLOCK, c, NULL)
|
|
|
|
#define BIO_read_blocked(b) BIO_ctrl(b, BIO_C_READ_BLOCKED, 0, NULL)
|
|
|
|
#define BIO_write_blocked(b) BIO_ctrl(b, BIO_C_WRITE_BLOCKED, 0, NULL)
|
|
|
|
#define BIO_wait_read(b, c) BIO_ctrl(b, BIO_C_WAIT_READ, c, NULL)
|
|
|
|
#define BIO_wait_write(b, c) BIO_ctrl(b, BIO_C_WAIT_WRITE, c, NULL)
|
2015-01-28 05:18:26 +03:00
|
|
|
|
2016-08-10 10:12:55 +03:00
|
|
|
FREERDP_LOCAL BIO_METHOD* BIO_s_simple_socket(void);
|
|
|
|
FREERDP_LOCAL BIO_METHOD* BIO_s_buffered_socket(void);
|
2015-02-13 22:26:02 +03:00
|
|
|
|
2021-09-06 12:01:36 +03:00
|
|
|
FREERDP_LOCAL int freerdp_tcp_connect(rdpContext* context, const char* hostname, int port,
|
|
|
|
DWORD timeout);
|
2011-07-03 23:34:15 +04:00
|
|
|
|
2020-09-02 14:37:04 +03:00
|
|
|
FREERDP_LOCAL int freerdp_tcp_default_connect(rdpContext* context, rdpSettings* settings,
|
|
|
|
const char* hostname, int port, DWORD timeout);
|
|
|
|
|
2018-05-03 13:24:16 +03:00
|
|
|
FREERDP_LOCAL char* freerdp_tcp_get_peer_address(SOCKET sockfd);
|
2018-03-15 08:37:30 +03:00
|
|
|
|
2018-09-27 17:08:28 +03:00
|
|
|
FREERDP_LOCAL struct addrinfo* freerdp_tcp_resolve_host(const char* hostname, int port,
|
2019-11-06 17:24:51 +03:00
|
|
|
int ai_flags);
|
2018-09-27 17:08:28 +03:00
|
|
|
FREERDP_LOCAL char* freerdp_tcp_address_to_string(const struct sockaddr_storage* addr, BOOL* pIPv6);
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_LIB_CORE_TCP_H */
|