The Bytecode Club
Java Echo Server - Printable Version

+- The Bytecode Club (https://the.bytecode.club)
+-- Forum: Software (https://the.bytecode.club/forumdisplay.php?fid=19)
+--- Forum: Java Projects / Libraries (https://the.bytecode.club/forumdisplay.php?fid=136)
+--- Thread: Java Echo Server (/showthread.php?tid=46015)



Java Echo Server - Konloch - 03-04-2023

CR Echo Server is a low-level non-blocking echo server.

It will echo-back the contents of the buffer if it has reached 1024 characters, or encountered a carriage return.

Click here to view the project source code

How To Use

You can run the Java Jar file directly, or you can use it as a library
Code:
CREchoServer server = new CREchoServer(7, 1);
server.start();

Using telnet you can easily test the server.

Code:
telnet localhost 7