Moved define for MSG_NOSIGNAL to tcp.h

This commit is contained in:
Bernhard Miklautz 2011-07-11 20:30:27 +02:00
parent 5d86daf7ea
commit 749c4ee6e6
2 changed files with 5 additions and 4 deletions

View File

@ -25,6 +25,11 @@
#include <freerdp/settings.h>
#include <freerdp/utils/stream.h>
#ifndef MSG_NOSIGNAL
#define MSG_NOSIGNAL 0
#endif
typedef struct rdp_tcp rdpTcp;
typedef boolean (*TcpConnect) (rdpTcp* tcp, const uint8* hostname, uint16 port);
typedef boolean (*TcpDisconnect) (rdpTcp* tcp);

View File

@ -33,10 +33,6 @@
#include "credssp.h"
#include "transport.h"
#ifndef MSG_NOSIGNAL
#define MSG_NOSIGNAL 0
#endif
#define BUFFER_SIZE 16384
STREAM* transport_recv_stream_init(rdpTransport* transport, int size)