Konloch Software

TCP Echo Server

Published 12/15/2023

Java non-blocking RFC-862 compliant echo server.

What Does It Do?

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

Links

Requirements

  • Java 8 or greater

How To Use

You can run the Java Jar file directly, or you can use it as a library.

EchoServer server = new EchoServer(7, 1);
server.start();

How To Connect

Using telnet you can easily test the server.

telnet localhost 7

Latest Updates