Here's an extract of my code:
OutputStream out = this.socket.getOutputStream();
out.write(fourBytes);
out.write(someBytes);
out.flush();
This gets sent in 2 packages, even though the first one is only 4 bytes long. Is there another way than concatenating the byte arrays together to send them together?
I've already tried setTcpNoDelay(false).