update README

This commit is contained in:
AJ ONeal 2018-08-06 12:30:29 -06:00
parent 5779325061
commit 994597800b
1 changed files with 6 additions and 1 deletions

View File

@ -56,15 +56,20 @@ sclient <remote> <local> [-k | --insecure]
Examples Examples
======== ========
Bridge between `telebit.cloud` and Bridge between `telebit.cloud` and local port `3000`.
```bash ```bash
sclient telebit.cloud 3000 sclient telebit.cloud 3000
``` ```
Same as above, but more explicit
```bash ```bash
sclient telebit.cloud:443 localhost:3000 sclient telebit.cloud:443 localhost:3000
``` ```
Ignore a bad TLS/SSL/HTTPS certificate and connect anyway.
```bash ```bash
sclient badtls.telebit.cloud:443 localhost:3000 -k sclient badtls.telebit.cloud:443 localhost:3000 -k
``` ```