Does TCPSend have a limit to the number of bytes it can send, or does it automatically separate large sets of data into packets?
I want to send images via tcp, and I need to know if I should split the data up before sending it, or if it's split up automatically? And if it is, is it seamlessly reintegrated on the other side? Sorry I am having a little trouble understanding, there is a limit for TCPRecv but not for TCPSend, so how does it work out if the total data sent is larger than the datalimit in TCPRecv?
Also, is there a max size for TCPRecv? Thanks!