CertainTLS

Results 21 comments of CertainTLS

现有协议不可以,但有的路由器(例如 GL-inet)支持Mac地址过滤,可以让指定的设备使用VPN服务

这是部署的例子 https://github.com/certaintls/build-VPN-server/blob/main/.github/workflows/shadowsocks.yml#L34

通过[浏览器代理](https://github.com/certaintls/build-VPN-server/blob/main/docs/Client-Configurations.zh-cn.md#%E6%B5%8F%E8%A7%88%E5%99%A8%E4%BB%A3%E7%90%86)的配置的方法可以实现。

我测试可以使用,请看以下 `docker run --name gost-quic -p 6121:6121/udp -d ginuerzh/gost -L=quic://:6121` 但是,速度不如 SS+KCPTUN

@CryptoSax I think the locket feature broke all tests. For example, locally ``` vscode ➜ /workspaces/shapeshifter-dispatcher/shTests/SocksTCP (main ✗) $ sh ./runAllSocksTests.sh go build github.com/OperatorFoundation/shapeshifter-dispatcher/shTests/SocksTCP: no non-test Go files in /workspaces/shapeshifter-dispatcher/shTests/SocksTCP...

I see go.mod and go.sum are in [.gitingore ](https://github.com/OperatorFoundation/shapeshifter-dispatcher/blob/main/.gitignore#L20-L21) . They should be committed. See https://stackoverflow.com/a/53852916/1966269

Adding "protocol": "faketcp" to both your client and server configuration should resolve the issue. See more detail at https://github.com/HyNetwork/hysteria/wiki/Advanced-Usage

Adding `"protocol": "faketcp"` to both your client and server configuration should resolve the issue. See more detail at https://github.com/HyNetwork/hysteria/wiki/Advanced-Usage

> Also, what's a good way to test it in real applications? I will write an e2e test in this PR. But, for testing with real applications, I don't know...

Thanks for digging into this. Your explanation makes sense. I pushed a new commit https://github.com/HyNetwork/hysteria/pull/340/commits/fbfe9abf649459cb04e0d16bdbcd96acd1830cc2 In this commit, I close the control stream and listen/accept new ones. However, in the...