Fix comment for nc example (#323)

The "Host" header is missing from the command for making the
request, so we get empty response.
This commit is contained in:
Oguz Bektas 2021-11-15 15:48:46 +01:00 committed by GitHub
parent fdb543cbb3
commit f12c6c1b5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,7 @@
* Here's an example usage:
*
* make -j8 o//examples/nc.com
* printf 'GET /\r\n\r\n' | o//examples/nc.com justine.lol 80
* printf 'GET /\r\nHost: justine.lol\r\n\r\n' | o//examples/nc.com justine.lol 80
*
* Once upon time we called this command "telnet"
*/