Multipart responses #2591
-
Version Platform Description https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests |
Beta Was this translation helpful? Give feedback.
Answered by
seanmonstar
Jul 6, 2021
Replies: 1 comment
-
hyper doesn't do anything special to implement range requests. You could use a server framework that provides support, like warp. Or you can just handle them yourself with hyper. That'd mean:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
seanmonstar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hyper doesn't do anything special to implement range requests. You could use a server framework that provides support, like warp. Or you can just handle them yourself with hyper. That'd mean:
Accept-Range: bytes
header in responses that support it.Range
header in requests.