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
seanmonstar opened this issue
Oct 13, 2022
· 0 comments
· Fixed by #3013
Assignees
Labels
A-serverArea: server.C-featureCategory: feature. This is adding a new feature.E-mediumEffort: medium. Some knowledge of how hyper internal works would be useful.
With #2851 complete, we now have separate types for HTTP/1 and HTTP/2 server connections. We'll remove the combo server::conn::{Http, Connection} stuff for 1.0. A combined/auto type can live in hyper-util.
The text was updated successfully, but these errors were encountered:
The connection types have been split into version-specific types, in the
`server::conn::{http1, http2}` modules.
Closes#3012
BREAKING CHANGE: Either choose a version-specific `Connection` type, or
look for the auto-version type in `hyper-util`.
A-serverArea: server.C-featureCategory: feature. This is adding a new feature.E-mediumEffort: medium. Some knowledge of how hyper internal works would be useful.
With #2851 complete, we now have separate types for HTTP/1 and HTTP/2 server connections. We'll remove the combo
server::conn::{Http, Connection}
stuff for 1.0. A combined/auto type can live inhyper-util
.The text was updated successfully, but these errors were encountered: