We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3322204 commit 2f5acfcCopy full SHA for 2f5acfc
src/de/javasocketapi/core/Client.java
@@ -39,6 +39,7 @@ public void connect() throws IOException {
39
if (socket == null) {
40
//initialise socket
41
this.socket = new Socket(this.hostname, this.port);
42
+ this.socket.setTcpNoDelay(true);
43
}
44
//start reading and writing
45
this.inputStreamThread = new InputStreamThread(this);
0 commit comments