2011-07-03 15:34:15 -04:00
|
|
|
/**
|
2012-10-08 23:02:04 -04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-03 15: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 14:01:41 +02:00
|
|
|
#ifndef FREERDP_LIB_CORE_TCP_H
|
|
|
|
|
#define FREERDP_LIB_CORE_TCP_H
|
2011-07-03 15:34:15 -04:00
|
|
|
|
2012-05-04 19:36:35 -04:00
|
|
|
#include <winpr/windows.h>
|
2011-08-16 17:40:29 -04:00
|
|
|
|
2011-07-07 13:37:48 -04:00
|
|
|
#include <freerdp/types.h>
|
2011-07-10 12:10:24 -04:00
|
|
|
#include <freerdp/settings.h>
|
2015-07-03 11:49:40 +02:00
|
|
|
#include <freerdp/freerdp.h>
|
2016-08-10 09:12:55 +02:00
|
|
|
#include <freerdp/api.h>
|
2024-09-05 20:59:21 +08:00
|
|
|
#include <freerdp/transport_io.h>
|
2013-03-21 16:45:25 -04:00
|
|
|
|
2013-04-30 17:16:38 -04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
|
#include <winpr/synch.h>
|
2013-03-21 16:45:25 -04:00
|
|
|
#include <winpr/stream.h>
|
2013-12-18 22:02:59 -05:00
|
|
|
#include <winpr/winsock.h>
|
2017-01-09 16:43:28 +01:00
|
|
|
#include <winpr/crypto.h>
|
2011-07-03 15:34:15 -04:00
|
|
|
|
2014-05-21 17:32:14 +02:00
|
|
|
#include <openssl/bio.h>
|
|
|
|
|
|
2015-02-14 10:14:13 -05:00
|
|
|
#include <freerdp/utils/ringbuffer.h>
|
2011-07-11 20:30:27 +02:00
|
|
|
|
2019-11-06 15:24:51 +01:00
|
|
|
#define BIO_TYPE_TSG 65
|
|
|
|
|
#define BIO_TYPE_SIMPLE 66
|
|
|
|
|
#define BIO_TYPE_BUFFERED 67
|
2023-09-22 22:13:54 +02:00
|
|
|
#define BIO_TYPE_NAMEDPIPE 69
|
2014-05-21 17:32:14 +02:00
|
|
|
|
2019-11-06 15:24:51 +01: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
|
2023-09-22 22:13:54 +02:00
|
|
|
#define BIO_C_SET_HANDLE 1109
|
2015-01-28 14:54:03 -05:00
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_set_socket(BIO* b, SOCKET s, long c)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
2025-03-31 13:56:20 +08:00
|
|
|
return BIO_ctrl(b, BIO_C_SET_SOCKET, c, (void*)(intptr_t)s);
|
2024-06-24 10:21:25 +02:00
|
|
|
}
|
2026-02-24 11:28:38 +01:00
|
|
|
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_get_socket(BIO* b, SOCKET* c)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
|
|
|
|
return BIO_ctrl(b, BIO_C_GET_SOCKET, 0, c);
|
|
|
|
|
}
|
2026-02-24 11:28:38 +01:00
|
|
|
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_get_event(BIO* b, HANDLE* c)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
2025-08-11 13:07:01 +02:00
|
|
|
return BIO_ctrl(b, BIO_C_GET_EVENT, 0, (void*)c);
|
2024-06-24 10:21:25 +02:00
|
|
|
}
|
2026-02-24 11:28:38 +01:00
|
|
|
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_set_handle(BIO* b, HANDLE h)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
|
|
|
|
return BIO_ctrl(b, BIO_C_SET_HANDLE, 0, h);
|
|
|
|
|
}
|
2026-02-24 11:28:38 +01:00
|
|
|
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_set_nonblock(BIO* b, long c)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
2026-02-26 15:06:27 +01:00
|
|
|
return BIO_ctrl(b, BIO_C_SET_NONBLOCK, c, nullptr);
|
2024-06-24 10:21:25 +02:00
|
|
|
}
|
2026-02-24 11:28:38 +01:00
|
|
|
|
|
|
|
|
WINPR_ATTR_NODISCARD
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_read_blocked(BIO* b)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
2026-02-26 15:06:27 +01:00
|
|
|
return BIO_ctrl(b, BIO_C_READ_BLOCKED, 0, nullptr);
|
2024-06-24 10:21:25 +02:00
|
|
|
}
|
2026-02-24 11:28:38 +01:00
|
|
|
|
|
|
|
|
WINPR_ATTR_NODISCARD
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_write_blocked(BIO* b)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
2026-02-26 15:06:27 +01:00
|
|
|
return BIO_ctrl(b, BIO_C_WRITE_BLOCKED, 0, nullptr);
|
2024-06-24 10:21:25 +02:00
|
|
|
}
|
2026-02-24 11:28:38 +01:00
|
|
|
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_wait_read(BIO* b, long c)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
2026-02-26 15:06:27 +01:00
|
|
|
return BIO_ctrl(b, BIO_C_WAIT_READ, c, nullptr);
|
2024-06-24 10:21:25 +02:00
|
|
|
}
|
|
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline long BIO_wait_write(BIO* b, long c)
|
2024-06-24 10:21:25 +02:00
|
|
|
{
|
2026-02-26 15:06:27 +01:00
|
|
|
return BIO_ctrl(b, BIO_C_WAIT_WRITE, c, nullptr);
|
2024-06-24 10:21:25 +02:00
|
|
|
}
|
2015-01-27 21:18:26 -05:00
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2016-08-10 09:12:55 +02:00
|
|
|
FREERDP_LOCAL BIO_METHOD* BIO_s_simple_socket(void);
|
2026-02-24 11:28:38 +01:00
|
|
|
|
|
|
|
|
WINPR_ATTR_NODISCARD
|
2016-08-10 09:12:55 +02:00
|
|
|
FREERDP_LOCAL BIO_METHOD* BIO_s_buffered_socket(void);
|
2015-02-13 14:26:02 -05:00
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2022-05-06 00:05:16 +02:00
|
|
|
FREERDP_LOCAL BOOL freerdp_tcp_set_keep_alive_mode(const rdpSettings* settings, int sockfd);
|
|
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2021-09-06 11:01:36 +02:00
|
|
|
FREERDP_LOCAL int freerdp_tcp_connect(rdpContext* context, const char* hostname, int port,
|
|
|
|
|
DWORD timeout);
|
2011-07-03 15:34:15 -04:00
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2020-09-02 11:37:04 +00:00
|
|
|
FREERDP_LOCAL int freerdp_tcp_default_connect(rdpContext* context, rdpSettings* settings,
|
|
|
|
|
const char* hostname, int port, DWORD timeout);
|
|
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2024-09-05 20:59:21 +08:00
|
|
|
FREERDP_LOCAL rdpTransportLayer*
|
|
|
|
|
freerdp_tcp_connect_layer(rdpContext* context, const char* hostname, int port, DWORD timeout);
|
|
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_MALLOC(free, 1)
|
|
|
|
|
WINPR_ATTR_NODISCARD
|
2018-05-03 12:24:16 +02:00
|
|
|
FREERDP_LOCAL char* freerdp_tcp_get_peer_address(SOCKET sockfd);
|
2018-03-14 22:37:30 -07:00
|
|
|
|
2026-02-24 11:28:38 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2018-09-27 16:08:28 +02:00
|
|
|
FREERDP_LOCAL struct addrinfo* freerdp_tcp_resolve_host(const char* hostname, int port,
|
2019-11-06 15:24:51 +01:00
|
|
|
int ai_flags);
|
2026-02-24 11:28:38 +01:00
|
|
|
|
|
|
|
|
WINPR_ATTR_NODISCARD
|
2018-09-27 16:08:28 +02:00
|
|
|
FREERDP_LOCAL char* freerdp_tcp_address_to_string(const struct sockaddr_storage* addr, BOOL* pIPv6);
|
|
|
|
|
|
2025-09-12 09:39:24 +02:00
|
|
|
FREERDP_LOCAL BOOL freerdp_tcp_set_nodelay(wLog* log, DWORD level, int sockfd);
|
|
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#endif /* FREERDP_LIB_CORE_TCP_H */
|