Using telnet to Simulate a HTTP Client: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 26: | Line 26: | ||
Connection: Keep-Alive | Connection: Keep-Alive | ||
</pre> | </pre> | ||
httpd will react to that if KeepAlive is "On", and will keep the connection alive for KeepAliveTimeout seconds. |
Revision as of 23:16, 8 January 2017
Internal
Overview
To close connection immediately:
telnet localhost 10000 GET /index.html HTTP/1.1 Host: localhost:10000 Connection: close HTTP/1.1 200 OK Content-Length: 37 Server: NovaOrdis http-server Connection: close ... Connection closed by foreign host.
To keep the connection alive (with httpd as proxy), use
Connection: Keep-Alive
httpd will react to that if KeepAlive is "On", and will keep the connection alive for KeepAliveTimeout seconds.