Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 6 days ago
JSON representation

Echo client, server over the QUIC protocol

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