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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TCP_H
|
|
|
|
#define __TCP_H
|
|
|
|
|
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>
|
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>
|
2011-07-03 23:34:15 +04:00
|
|
|
|
2011-07-11 22:30:27 +04:00
|
|
|
#ifndef MSG_NOSIGNAL
|
|
|
|
#define MSG_NOSIGNAL 0
|
|
|
|
#endif
|
|
|
|
|
2011-07-03 23:34:15 +04:00
|
|
|
typedef struct rdp_tcp rdpTcp;
|
|
|
|
|
|
|
|
struct rdp_tcp
|
|
|
|
{
|
|
|
|
int sockfd;
|
2011-07-27 03:14:11 +04:00
|
|
|
char ip_address[32];
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE mac_address[6];
|
2013-11-08 02:37:58 +04:00
|
|
|
rdpSettings* settings;
|
2011-08-17 01:40:29 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
WSAEVENT wsa_event;
|
|
|
|
#endif
|
2013-05-01 01:16:38 +04:00
|
|
|
HANDLE event;
|
2011-07-03 23:34:15 +04:00
|
|
|
};
|
|
|
|
|
2013-11-08 02:37:58 +04:00
|
|
|
BOOL tcp_connect(rdpTcp* tcp, const char* hostname, int port);
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL tcp_disconnect(rdpTcp* tcp);
|
2012-10-09 11:01:37 +04:00
|
|
|
int tcp_read(rdpTcp* tcp, BYTE* data, int length);
|
|
|
|
int tcp_write(rdpTcp* tcp, BYTE* data, int length);
|
2012-12-21 12:23:50 +04:00
|
|
|
int tcp_wait_read(rdpTcp* tcp);
|
|
|
|
int tcp_wait_write(rdpTcp* tcp);
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL tcp_set_blocking_mode(rdpTcp* tcp, BOOL blocking);
|
|
|
|
BOOL tcp_set_keep_alive_mode(rdpTcp* tcp);
|
2013-07-21 06:34:05 +04:00
|
|
|
int tcp_attach(rdpTcp* tcp, int sockfd);
|
2013-05-01 01:16:38 +04:00
|
|
|
HANDLE tcp_get_event_handle(rdpTcp* tcp);
|
2011-07-03 23:34:15 +04:00
|
|
|
|
2011-07-10 20:10:24 +04:00
|
|
|
rdpTcp* tcp_new(rdpSettings* settings);
|
2011-07-07 21:37:48 +04:00
|
|
|
void tcp_free(rdpTcp* tcp);
|
2011-07-03 23:34:15 +04:00
|
|
|
|
|
|
|
#endif /* __TCP_H */
|