summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorGDR! <gdr@go2.pl>2014-12-11 22:33:27 +0100
committerGDR! <gdr@go2.pl>2014-12-11 22:33:27 +0100
commitc9f51df320380a537843145ebbf4ceff7ef1c561 (patch)
tree7427295aa57e477837c18c6deb10ed05660622c1 /client.c
parent925a7c2bdf93c3a0209552285b77e2e585a799c4 (diff)
Added MSG_NOSIGNAL to send() in client
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index 58b35d4..4cf6b7b 100644
--- a/client.c
+++ b/client.c
@@ -141,7 +141,7 @@ int handle_server_tcp_frame(protocol_frame *rcvd_frame)
141 tun->sockfd, 141 tun->sockfd,
142 rcvd_frame->data + offset, 142 rcvd_frame->data + offset,
143 rcvd_frame->data_length - offset, 143 rcvd_frame->data_length - offset,
144 0 144 MSG_NOSIGNAL
145 ); 145 );
146 146
147 if(sent_bytes < 0) 147 if(sent_bytes < 0)