Created
August 27, 2019 11:22
-
-
Save ertugrulozcan/1198006455736e00773ba6bb12b761ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> Connection 1 Establishment - TCP Three-Way Handshake | |
> Connected to 0.0.0.0 | |
--Request-- | |
GET /project.html HTTP/1.0 | |
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 | |
--Response-- | |
HTTP/1.0 200 OK | |
Content-Type: text/html | |
Content-Length: 171672 | |
Expires: Thu, 01 Dec 1997 16:00:00 GMT | |
Last-Modified: Wed, 1 May 1996 12:45:26 GMT | |
Server: Apache 0.84 | |
<html> | |
A page with an image | |
<img src="/picture.gif"> | |
</html> | |
> Connection 1 Closed - TCP Teardown | |
------------------------------------------ | |
> Connection 2 Establishment - TCP Three-Way Handshake | |
> Connected to 0.0.0.0 | |
--Request-- | |
GET /picture.gif HTTP/1.0 | |
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 | |
--Response-- | |
HTTP/1.0 200 OK | |
Content-Type: text/gif | |
Content-Length: 971641 | |
Expires: Thu, 01 Dec 1997 16:00:00 GMT | |
Last-Modified: Wed, 1 May 1996 12:45:26 GMT | |
Server: Apache 0.84 | |
[bytes] | |
> Connection 2 Closed - TCP Teardown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment