quinn-plaintext

Use QUIC without encryption.

This is not recommended unless there's already encryption w/ the underlying layer (e.g. Wireguard)

Usage

Basic examples are available under examples/

Server

rust let server = quinn::Endpoint::server(quinn_plaintext::server_config(), "[::]:0".parse()?)?; // ...

Client

```rust let client = quinn::Endpoint::client("[::]:0".parse()?)?;

let conn = client.connectwith( quinnplaintext::client_config(), "127.0.0.1:1337".parse()?, "plaintext.test" )?.await?; // ... ```