fix comment for nc example

the "Host" header is missing from the command for making the request,
so we get empty response.
This commit is contained in:
xorond 2021-11-13 14:32:16 +01:00
parent 206091617a
commit 214d05a597

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"
*/