2020-09-02 14:37:04 +03:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* FreeRDP Interface
|
|
|
|
*
|
|
|
|
* Copyright 2009-2011 Jay Sorg
|
|
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FREERDP_TRANSPORT_IO_H
|
|
|
|
#define FREERDP_TRANSPORT_IO_H
|
|
|
|
|
2023-03-14 12:39:18 +03:00
|
|
|
#include <winpr/stream.h>
|
|
|
|
|
2020-09-02 14:37:04 +03:00
|
|
|
#include <freerdp/api.h>
|
|
|
|
#include <freerdp/types.h>
|
2023-03-14 12:39:18 +03:00
|
|
|
#include <freerdp/settings.h>
|
2020-09-02 14:37:04 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2023-03-14 11:27:55 +03:00
|
|
|
typedef struct rdp_transport_io rdpTransportIo;
|
|
|
|
|
2020-09-02 14:37:04 +03:00
|
|
|
typedef int (*pTCPConnect)(rdpContext* context, rdpSettings* settings, const char* hostname,
|
|
|
|
int port, DWORD timeout);
|
|
|
|
typedef BOOL (*pTransportFkt)(rdpTransport* transport);
|
|
|
|
typedef BOOL (*pTransportAttach)(rdpTransport* transport, int sockfd);
|
|
|
|
typedef int (*pTransportRWFkt)(rdpTransport* transport, wStream* s);
|
|
|
|
typedef SSIZE_T (*pTransportRead)(rdpTransport* transport, BYTE* data, size_t bytes);
|
2024-01-02 19:00:14 +03:00
|
|
|
typedef BOOL (*pTransportGetPublicKey)(rdpTransport* transport, const BYTE** data,
|
|
|
|
DWORD* length);
|
2020-09-02 14:37:04 +03:00
|
|
|
|
|
|
|
struct rdp_transport_io
|
|
|
|
{
|
|
|
|
pTCPConnect TCPConnect;
|
|
|
|
pTransportFkt TLSConnect;
|
|
|
|
pTransportFkt TLSAccept;
|
|
|
|
pTransportAttach TransportAttach;
|
|
|
|
pTransportFkt TransportDisconnect;
|
|
|
|
pTransportRWFkt ReadPdu; /* Reads a whole PDU from the transport */
|
|
|
|
pTransportRWFkt WritePdu; /* Writes a whole PDU to the transport */
|
|
|
|
pTransportRead ReadBytes; /* Reads up to a requested amount of bytes from the transport */
|
2024-01-02 19:00:14 +03:00
|
|
|
pTransportGetPublicKey GetPublicKey;
|
2020-09-02 14:37:04 +03:00
|
|
|
};
|
|
|
|
typedef struct rdp_transport_io rdpTransportIo;
|
|
|
|
|
2022-11-15 17:04:13 +03:00
|
|
|
FREERDP_API BOOL freerdp_io_callback_set_event(rdpContext* context, BOOL reset);
|
|
|
|
|
2021-09-03 14:02:28 +03:00
|
|
|
FREERDP_API const rdpTransportIo* freerdp_get_io_callbacks(rdpContext* context);
|
|
|
|
FREERDP_API BOOL freerdp_set_io_callbacks(rdpContext* context,
|
2020-09-02 14:37:04 +03:00
|
|
|
const rdpTransportIo* io_callbacks);
|
2022-03-16 17:28:24 +03:00
|
|
|
|
|
|
|
FREERDP_API BOOL freerdp_set_io_callback_context(rdpContext* context, void* usercontext);
|
|
|
|
FREERDP_API void* freerdp_get_io_callback_context(rdpContext* context);
|
|
|
|
|
2020-09-02 14:37:04 +03:00
|
|
|
/* PDU parser.
|
|
|
|
* incomplete: FALSE if the whole PDU is available, TRUE otherwise
|
|
|
|
* Return: 0 -> PDU header incomplete
|
|
|
|
* >0 -> PDU header complete, length of PDU.
|
|
|
|
* <0 -> Abort, an error occured
|
|
|
|
*/
|
|
|
|
FREERDP_API SSIZE_T transport_parse_pdu(rdpTransport* transport, wStream* s, BOOL* incomplete);
|
2021-09-03 09:00:24 +03:00
|
|
|
FREERDP_API rdpContext* transport_get_context(rdpTransport* transport);
|
2021-09-03 14:02:28 +03:00
|
|
|
FREERDP_API rdpTransport* freerdp_get_transport(rdpContext* context);
|
2021-09-03 09:00:24 +03:00
|
|
|
|
2020-09-02 14:37:04 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* FREERDP_TRANSPORT_IO_H */
|