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
Right now picohttp doesn't provide the range request.
I did attached to this issue a quick implementation of the range request.
According to https://datatracker.ietf.org/doc/html/rfc9204#appendix-A
We just need to implement the qpack code 55
In the attached patch, I just did modify the api of h3zero.h to pass the range
Right now picohttp doesn't provide the range request.
I did attached to this issue a quick implementation of the range request.
According to https://datatracker.ietf.org/doc/html/rfc9204#appendix-A
We just need to implement the qpack code 55
In the attached patch, I just did modify the api of h3zero.h to pass the range
Previous api was:
new
is
So, we can pass range this way for instance:
range = "bytes=100-1000" range_length = 14
I see no regressions with tests: picohttp_ct & picoquicdemo
Note that there is nothing right now in the code that check that range is accepted.
patch: 0001-Implementation-of-byte-range-according-to-rfc9204.patch.txt
The text was updated successfully, but these errors were encountered: