curl

All

Intro

Curl is an excelent to test http responses.  Interesting that since it’s open source you can see where the could might fail, for example:

Code

if(!stream->bodystarted) {

   failf(data, “HTTP/2 stream %d was closed cleanly, but before getting “” all response header fields, treated as error”,stream->stream_id);*err = CURLE_HTTP2_STREAM;return -1;

}

Therefore in case you see HTTP/2 stream %d was closed cleanly, but before getting you would know that the header is coming broke or the body of the request is absent.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s