Hello
I am building an C++ application server-client where the client sends an image (170kb) to a server every 200ms.
Using UDP, the files uncompressed are over 64kbs allowed by each datagram (I'd like to avoid compressing the files if possible).
On the other hand I'm having problems setting a TCP connection, I managed stablish a connection but only the first file is sent, do I need to connect, send the file, break connection and do the same process for all files?
Both sockets were set up using boost asio. Should I another protocol?
thanks in advance