Click here to Skip to main content
15,896,726 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I tried sending the content of a buffer with send function and receive with recv function but I found out that the entire buffer content was not transmitted/the entire buffer content was not received. What can be the reason and how do I rectify this?
Posted
Comments
[no name] 10-Sep-12 0:29am    
Where's your code?

1 solution

The reason can be that you haven't checked out the documentation of these two functions and you probably don't check their return value: send()[^], recv()[^]. Always check the return value for errors, and never assume that they sent the whole buffer. If they sent/received only part of the data then increase the pointer into your buffer and issue another send() or recv() call to send/receive the remaining data.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900