Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seiyakobayashi/echoserver
Echo Server (a server just echoing what you write) written in C and Rust.
https://github.com/seiyakobayashi/echoserver
Last synced: 11 days ago
JSON representation
Echo Server (a server just echoing what you write) written in C and Rust.
- Host: GitHub
- URL: https://github.com/seiyakobayashi/echoserver
- Owner: SeiyaKobayashi
- Created: 2018-01-21T16:53:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-28T07:35:05.000Z (over 6 years ago)
- Last Synced: 2024-04-23T20:42:21.406Z (7 months ago)
- Language: C
- Homepage:
- Size: 1.9 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EchoServer
## How to run Echo Server (Rust ver.)
```
$ cargo run
$ telnet 127.0.0.1 8080
```
Then type what you want!```
Hello // This is your input
You just wrote: Hello // This is the output from server
```