From 944af506397b452cfe9044a9d07e37db6f9c6e12 Mon Sep 17 00:00:00 2001 From: "rui.zheng" Date: Sat, 22 Oct 2016 10:11:46 +0800 Subject: [PATCH] update README --- README.md | 2 +- README_en.md | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5428014..a01b653 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ gost -L=:8080 -F=socks://server_ip:1080 **注:** 如果transport已经支持加密(wss, tls, http2),则SOCKS5不会再使用加密方法,防止不必要的双重加密。 #### Shadowsocks -gost对Shadowsocks的支持是基于[shadowsocks-go](https://github.com/shadowsocks/shadowsocks-go)库。 +gost对shadowsocks的支持是基于[shadowsocks-go](https://github.com/shadowsocks/shadowsocks-go)库。 服务端(可以通过ota参数开启OTA模式): ```bash diff --git a/README_en.md b/README_en.md index e0a3026..98360d1 100644 --- a/README_en.md +++ b/README_en.md @@ -3,8 +3,6 @@ gost - GO Simple Tunnel ### A simple security tunnel written in Golang -[中文文档](README.md) - Features ------ * Listening on multiple ports @@ -155,10 +153,24 @@ Gost HTTP2 supports two modes and self-adapting: * As a standard HTTP2 proxy, and backwards-compatible with the HTTPS proxy. * As transport (similar to wss), tunnel other protocol. - **NOTE:** The proxy chain of gost supports only one HTTP2 proxy node and the nearest rule applies, the first HTTP2 proxy node is treated as an HTTP2 proxy, and the other HTTP2 proxy nodes are treated as HTTPS proxies. +#### QUIC +Support for QUIC is based on library [quic-go](https://github.com/lucas-clemente/quic-go). + +Server: +```bash +gost -L=quic://:6121 +``` + +Client(Chrome): +```bash +chrome --enable-quic --proxy-server=quic://server_ip:6121 +``` + +**NOTE:** Due to Chrome's limitations, it is currently only possible to access the HTTP (but not HTTPS) site through QUIC. + Encryption Mechanism ------ #### HTTP @@ -206,7 +218,7 @@ Otherwise, use standard SOCKS5 for communication (no-auth or user/pass). #### Shadowsocks Support for shadowsocks is based on library [shadowsocks-go](https://github.com/shadowsocks/shadowsocks-go). -Server (The OTA mode can be enabled with the ota parameter): +Server (The OTA mode can be enabled by the ota parameter): ```bash gost -L=ss://aes-128-cfb:123456@:8338?ota=1 ```