wtransport icon indicating copy to clipboard operation
wtransport copied to clipboard

Async-friendly WebTransport implementation in Rust

Results 23 wtransport issues
Sort by recently updated
recently updated
newest added

Hi, I got a test working where I'm generating self-signed certificates; which I need to include in the client with the `server_certificate_hashes` option. But in a real use-case where I...

question

Updates the requirements on [rustls-native-certs](https://github.com/rustls/rustls-native-certs) to permit the latest version. Commits 03974af Cargo: version 0.7.0-alpha.3 -> 0.7.0 9338a53 docs: fixup README API description f1bb7e8 docs: update README release history 2b49028...

dependencies
rust

`rustls` framework changed with many breaking changes. For now this is blocked as `quinn` (as first layer dep) needs to integrate the new rustls: https://github.com/quinn-rs/quinn/pull/1715

enhancement
dependencies

This a great project. I have a question though about the goal in regards to `async` support. I see that as things are right now there's a dependency on tokio...

question

Under the hood, quinn has `read_chunk` and `write_chunk` fns (et al) - it would be great if this crate could expose a similar API.

enhancement
feature

Looking at this repo, it seems pretty cool. However, I'm curious. Could you use this library to make a desktop client, and have it be able to connect to the...

question

I have a ServerConfig builder that looks like this: ```rust let config = ServerConfig::builder() .with_bind_address(bind_address, false) .with_certificate(certificate) .keep_alive_interval(Some(Duration::from_secs(3))) .build(); ``` So the `only_v6` flag is false (side note: it's not...

Investigation