Click here to Skip to main content
15,888,162 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey everyone.

I have question to ask.

I wonder, while sending data with TcpClient, is there any sort of CRC
checking algorithm that works automatically? Or I have to implement my own algorithm and resend the data if it doesn't arrive to remote host correctly?

Any ideas?

My best regards...
Posted

As described here[^] the TCP packet includes a checksum. Whether that is sufficient for your requirements is another matter.
 
Share this answer
 
Comments
Un_NaMeD 25-Nov-11 8:37am    
Hi sir.
So it means there's already one to check, but if I want I can implement my own algorithm.
Richard MacCutchan 25-Nov-11 8:51am    
Yes, If you need extra checks on the data you are free to add it to your message.
TCP guarantees that data will be received in order if it is received at all, and automatically error-checks and resubmits if there are packet loss or corruption issues. For normal applications you don't need to do anything else.

The one thing it doesn't do is make one send match one receive (that is, packet boundaries are not preserved). TCP is a stream protocol and you do need to provide some method of determining where messages start and end. Have a look at my sockets library article for some information about two ways to do that.
 
Share this answer
 
Comments
Un_NaMeD 25-Nov-11 9:29am    
your libs, sir?

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