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

https://github.com/smallnest/quick

an encrypted UDP connection between two peers using QUIC
https://github.com/smallnest/quick

Last synced: 10 months ago
JSON representation

an encrypted UDP connection between two peers using QUIC

Awesome Lists containing this project

README

          

# a net.Conn compatible lib via QUIC

The initial code is cloned from [quic-conn](https://github.com/marten-seemann/quic-conn), but I refactored and updated codes to keepcompatible with latest https://github.com/lucas-clemente/quic-go.

## Run the example

Start listening for an incoming QUIC connection
```go
go run example/main.go -s
```
The server will echo every message received on the connection in uppercase.

Send a message on the QUIC connection:
```go
go run example/main.go -c
```