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?
I wonder, while sending data with TcpClient, is there any sort of CRC checking
Share
There is a checksum in TCP. But, as the same article says,
So if you have concerns about that, maybe it won’t hurt to add another checking.