v0.14.0
Changes:
- smux: Added smux protocol support
- ssh: Optimized the ssh client implementation (#251)
- docker: Added basic tools (#255 by @gaby )
- ci: Added freebsd version
smux usage examples:
- http proxy over smux over websocket:
-
server:
glider -verbose -listen ws://:10000,smux://,http://
-
client:
glider -verbose -listen :8443 -forward ws://:10000,smux://,http://
-
test it with
curl
:curl -x socks5://127.0.0.1:8443 apple.com
- a tcp port forwarder with smux:
-
server:
glider -verbose -listen smux://:10000 -forward tcp://8.8.8.8:53
-
client:
glider -verbose -listen tcp://:53 -forward smux://:10000
-
test it with
dig
:dig @127.0.0.1 apple.com +tcp