Answers to: Parial Write for sockets in LINUXhttp://linuxexchange.org/questions/2546/parial-write-for-sockets-in-linux<p>We have a server-client communication in our application. Sockets are used for the communication. We are using AF_INET sockets with SOCK_STREAM(TCP/IP). Also these sockets are in Non Blocking mode (O_NONBLOCK). Application is written in C++ on UNIX.</p> <p>In our system the Server will write to a socket and Client will read from it. We had written code to handle partial writes. If a partial happens, we will try 30 more times to write the entire data.</p> <p>Our Server try to write 2464 bytes to the socket. In some cases it could not write entire data. So server will try writing 30 more times to transfer entire data. Most of the times the entire data will be written within 30 tries. But some times the even after 30 reties sever wil not be able to write the entire data. Here it will throw EAGAIN error. Problem happens in the Client Side when it tries to read this partially written data.</p> <p>Consider the server tried to write 2464 bytes. But after the repeated 30 attempts it could write only 1080 bytes. Server will raise a EAGAIN at this point. Client try to read 2464 bytes. The read command will return 2464 and hence the read itself is ok. But the data we received is a corrupted one (Partially written data only). So client crashes.</p> <p>Can any one please advise on following,</p> <p>1) Is it possible to remove only the partially written data by the server itself. Thus the client will not recieve corrupted incomplete data?. (We cannot use a read() function from server to remove this. Consider server successfully written n messages to the socket. Client is in busy state and not able to read them. Then the server try to write the n+1 th message and Partial write occured. If we use read command from the server, the entire n successfull messages alo get removed. We need to remove the Partially witten (n+1 th) message only)</p> <p>2) Is there any way to identify in client side that we had read a partially written message?.</p> <p>Please note that we are facing the partial write issue in LINUX(REDHAT 5.4) only. System is working fine in Solaris (In solaris either eh entire data will be written OR NO data witll be written with in 30 tries of write).</p> <p>Thanks in advance.</p>enMon, 23 May 2011 17:19:53 -0400Answer by who_knowshttp://linuxexchange.org/questions/2546/parial-write-for-sockets-in-linux/2560<p>There is only one method to handle this. You need to make the write carefully and send only data that has not been yet written. The code should look similar to this:</p> <pre><code>data_left = buffer_len; buffptr = buffer; while (data_left &gt; 0) { int res = write(fd, buffptr, data_left); if (res == -1) { /* error handling */ } data_left -= res; buffptr += res; } </code></pre>who_knowsMon, 23 May 2011 17:19:53 -0400http://linuxexchange.org/questions/2546/parial-write-for-sockets-in-linux/2560