add typo fix and add curl example

Cette révision appartient à :
AJ ONeal 2018-08-06 17:34:32 -06:00
Parent e9845273b5
révision fe525b72c9
1 fichiers modifiés avec 7 ajouts et 1 suppressions

Voir le fichier

@ -9,7 +9,7 @@ Unwrap a TLS connection:
```bash
$ sclient whatever.com:443 localhost:3000
> [listening] telebit.cloud:443 <= localhost:3000
> [listening] whatever.com:443 <= localhost:3000
```
Connect via Telnet
@ -24,6 +24,12 @@ Connect via netcat (nc)
$ nc localhost 3000
```
cURL
```bash
$ curl http://localhost:3000 -H 'Host: whatever.com'
```
A poor man's (or Windows user's) makeshift replacement for `openssl s_client`, `stunnel`, or `socat`.
Install