timestee

Results 17 comments of timestee

No,No,No,Still getting this error in 2020~, this [link](https://github.com/dgrijalva/jwt-go/issues/65) working for me

@magginichi ok i will pub the latest version these days.

@jkjamies good point, but should waiting for a fews days, or you could pull request

Actually, there is not so much difference i think. this lib is using in our Flutter App to sync data from remote web storage and local db on mobile device....

@paul-hammant i am new to dart,so appreciate if you could give me any suggestion or help me to improve it. Test and example are on the way.

加了一点[注释](https://github.com/zsounder/kcp/blob/commnet_just/ikcp.c),看代码逻辑中的确是这样的,线性增加,重发会过于频繁,改成如下可能好些: ``` if (kcp->nodelay == 0) { segment->rto += segment->rto; } else { segment->rto += segment->rto / 2; } ```

@LiuqingYang @skywind3000 代码中是这样的 ``` if (kcp->nodelay == 0) { segment->rto += kcp->rx_rto; } else { segment->rto += kcp->rx_rto / 2; ``` kcp->rx_rto并没有发生变化,所以每次加的都是一个固定数值,应该是线性增加吧,代码中有变更kcp->rx_rto的地方?没注意到。

@skywind3000 segment->rto 会初始化为kcp->rx_rto,kcp->rx_rto是固定的,后续segment->rto的增加都是一个固定数值。

没有至于不至于,问题就是问题,仅此而已

Is there any update? I still have this issue too.