trillium-client-v0.9.1
·
81 commits
to main
since this release
Added
Conn::into_websocketnow works over HTTP/3, in addition to the existing HTTP/2 and HTTP/1.1
support. Hint the conn withVersion::Http3to upgrade a WebSocket over an HTTP/3 connection.ConnExt::upgradeandConnExt::is_upgrade— mark a client conn for an upgrade. Withupgrade
marked, executing the conn transmits only the request headers and leaves the outbound direction
open; the conn can then be converted into atrillium_http::Upgrade<Box<dyn Transport>>once
response headers arrive (Upgrade::from(conn)).