https://github.com/konloch/echoserver
Example implementation of a non-blocking RFC-862 compliant echo server.
https://github.com/konloch/echoserver
echo echo-server
Last synced: 17 days ago
JSON representation
Example implementation of a non-blocking RFC-862 compliant echo server.
- Host: GitHub
- URL: https://github.com/konloch/echoserver
- Owner: Konloch
- License: mit
- Created: 2023-12-15T11:02:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T11:19:28.000Z (over 2 years ago)
- Last Synced: 2025-12-02T00:31:19.091Z (4 months ago)
- Topics: echo, echo-server
- Language: Java
- Homepage: https://konloch.com/echoserver
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# [Echo Server](https://github.com/Konloch/EchoServer/tree/main/Echo-Server)
[Echo Server](https://github.com/Konloch/EchoServer/tree/main/Echo-Server) is a low-level non-blocking [RFC-862](https://www.rfc-editor.org/rfc/rfc862) compliant echo server.
# [CR Echo Server](https://github.com/Konloch/EchoServer/tree/main/CR-Echo-Server)
[CR Echo Server](https://github.com/Konloch/EchoServer/tree/main/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.
## How To Use
You can run the Java Jar file directly, or you can use it as a library
```java
EchoServer server = new EchoServer(7, 1);
server.start();
```
### How To Connect
Using `telnet` you can easily test the server.
```
telnet localhost 7
```
## Links
* [Website](https://konloch.com/EchoServer/)
* [Discord Server](https://discord.gg/aexsYpfMEf)
* [Download Releases](https://github.com/Konloch/EchoServer/releases)