I am trying to test if site/server/whatever has ability to pipeline HTTP request.
So far, I think it is possible to send several request through one curl
session, like:
curl http://www.example.com/1.html http://www.example.com/main.css http://www.example.com/2.html
Is possible to use below mentioned to simulate pipelining and how can I actually verify than pipelining was used?
I'm laso thinking about using netcat
, send few requests and verify if it'll came back in correct order (as requested by RFC)
Could you give me some hints about how to verify a content was pipelined? (At the best on linux, but is not necessary.)