You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Endpoint, IncomingConnections, Connection, and ConnectionIncoming no longer have a generic type parameter.
Endpoint::disconnect_from, Endpoint::get_connection_by_addr, and Endpoint::get_connection_by_id have been removed.
Connection::id has been removed.
Endpoint::new, Endpoint::connect_to, and Endpoint::connect_to_any now return (Connection, ConnectionIncoming), rather than (Connection, Option<ConnectionIncoming>).
Connection::open_bi no longer takes a priority argument. This can
be set with SendStream::set_priority instead.
Semantically, all calls to Endpoint::connect_to and Endpoint::connect_to_any will establish and return new connections.
There is no connection reuse.
Bug Fixes
drop an unused field from tests::quinn::Peer (7b0fa53)