summaryrefslogtreecommitdiffstats
path: root/drivers/unix/stream_peer_tcp_posix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/unix/stream_peer_tcp_posix.cpp')
-rw-r--r--drivers/unix/stream_peer_tcp_posix.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/unix/stream_peer_tcp_posix.cpp b/drivers/unix/stream_peer_tcp_posix.cpp
index 2db7d9f6ec..f65eb694d6 100644
--- a/drivers/unix/stream_peer_tcp_posix.cpp
+++ b/drivers/unix/stream_peer_tcp_posix.cpp
@@ -206,8 +206,12 @@ Error StreamPeerTCPPosix::write(const uint8_t* p_data,int p_bytes, int &r_sent,
while (data_to_send) {
- // TODO: handle MSG_NOSIGNAL on __HAIKU__
- int sent_amount = send(sockfd, offset, data_to_send, 0);
+ // TODO: haiku does not have MSG_NOSIGNAL
+#ifdef __HAIKU__
+ int sent_amount = send(sockfd, offset, data_to_send, 0);
+#else
+ int sent_amount = send(sockfd, offset, data_to_send, MSG_NOSIGNAL);
+#endif
//printf("Sent TCP data of %d bytes, errno %d\n", sent_amount, errno);
if (sent_amount == -1) {