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
The generated command line assumes a HTTPS site and generates such a URL. There is typically nothing in the request that tells if HTTPS or HTTP was used.
When several form parameters are provided, the output from h2c is garbled.
This curl command:
curl --form ONE=1 --form TWO=2 --form THREE=3 http://localhost:8000
Performs this request:
Which h2c outputs as:
Note that the value of the form fields keeps accumulating instead of resetting.
TWO
's value is1\n2
andTHREE
's value is1\n2\n3
.The text was updated successfully, but these errors were encountered: