https://github.com/say4n/quic-echo
Echo client, server over the QUIC protocol
https://github.com/say4n/quic-echo
ietf quic quic-client quic-server
Last synced: 4 months ago
JSON representation
Echo client, server over the QUIC protocol
- Host: GitHub
- URL: https://github.com/say4n/quic-echo
- Owner: say4n
- License: mit
- Created: 2019-06-17T17:22:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-29T12:09:14.000Z (almost 7 years ago)
- Last Synced: 2024-12-30T13:14:06.637Z (over 1 year ago)
- Topics: ietf, quic, quic-client, quic-server
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# quic-echo
Echo server, client over the QUIC protocol.
## build
Run `make` in the root directory. Execute the server and client as two different processes in order.
## files
### server.go
Creates a QUIC echo server.
```bash
$ ./server -h
Usage of ./server:
-hostname string
hostname/ip of the server (default "localhost")
-port string
port number of the server (default "4242")
```
### client.go
Creates a QUIC client to talk to the echo server.
```bash
$ ./client -h
Usage of ./client:
-hostname string
hostname/ip of the server (default "localhost")
-necho int
number of echos (default 100)
-port string
port number of the server (default "4242")
```
## author
Sayan Goswami