Secure Client for exposing TLS (aka SSL) secured services as plain-text connections locally. Also ideal for multiplexing a single port with multiple protocols using SNI. https://webinstall.dev/sclient
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

8 wiersze
143 B

#!/bin/bash
go run -race sclient*.go telebit.cloud:443 localhost:3000 &
my_pid=$!
sleep 5
netcat localhost 3000 < tests/get.bin
kill $my_pid