Fan Yang

Results 10 comments of Fan Yang

no plan for the time being

暂时没动力了,除非哪天我用的ss商家限定了混淆方法

我当时就是看C#和libev版源代码一点点抄过来的,自己本地开个服务端调试,挺烦的

> @missdeer I'm also facing the same problem. Did u find any solution? Would appreciate it a lot! Not yet.

确实如此,这不是frp独有的问题。 一端是Windows,一端是Linux,广域网大流量的情况下,用网络检测程序iperf就很容易测出来速度并不高,远远跑不到标称的带宽(高速局域网除外),要在Windows侧把socket的TCP window size设大,比如256K,速度就上去了。 如果两端都是Linux系统,就不需要改这个参数,改了反而速度降了,用系统默认的刚好。 示例C代码: ```cpp const int nNrKb = 256; int nBuffSize = 1024 * nNrKb; int nRet = setsockopt(nSocket, SOL_SOCKET, SO_SNDBUF, (char *)&nBuffSize, sizeof(int)); nRet = setsockopt(nSocket,...

@yydcool 是的。以前做一个大流量relay程序,aws美东到美西,或者美国到中国,带宽怎么都跑不上去,后来发现是这个原因,在Windows侧把TCP window size改大就好了,或者全部换成Linux系统也行。

@yinghuocho AFAIK, shadowsocks-libev's UDP relay feature is not compatible with shadowsocksR server (aka. python version), but C# windows client's implementation does.