I need help picking the right curl functions to calculate these things:
DNS The web browser is looking up DNS information
Connect The web browser is connecting to the server
Send The web browser is sending data to the server
Wait The web browser is waiting for data from the server
Receive The web browser is receiving data from the server
For example if i have this url http://g2.delfi.lt/scms/?g=delfi-fp.css&1362823940
, i would want to get these values:
DNS - 443ms
Connect - 589ms
Send - 1ms
Wait - 152ms
Receive - 1ms
Can i do this using curl?