Open
Description
Today, when a server receives a POST, it will read all data off the stream till the end, and then close the stream, sending nothing but a 200
in return.
neqo/neqo-bin/src/server/http3.rs
Lines 156 to 170 in 7c7f1c3
In case the client requested a response via the /<some-number-of-bytes-to-respond-with>
pattern, the server ignores it.
neqo/neqo-bin/src/server/http3.rs
Lines 123 to 124 in 7c7f1c3
In other words, neqo-bin/src/server/http3.rs
does not support a combined up- and download.
Fixing this, I assume, is more about eliminating this pitfall than about providing value through a combined upload and download benchmark.