ffrdp icon indicating copy to clipboard operation
ffrdp copied to clipboard

ffrdp is a fast reliable protocol base on udp + arq + fec.

Results 3 ffrdp issues
Sort by recently updated
recently updated
newest added

1.修复传入 server port == 0 时 server_addr 不正确的端口, 并增加 ffrdp_getport() 获取临时端口号. 2.增加 ffrdp_peeksize() 接口用于确定待接收数据大小, 因为很多时候并非循环 recv().

做性能测试的时候,由于统计值counter_send_bytes、counter_send_bytes都是uint32_t类型,因此当统计值太大,到溢出的时候,就会出现,实际统计性能降低的问题: ![image](https://github.com/user-attachments/assets/1e9196e3-5ecd-4704-ba2b-c004f0b50a64) 这类统计值,应修改为uint64_t,当然在2位机器时,不需要修改了。

之前读过kcp的代码,在kcp中,update是循环调用的,咱们的ffrdp不需要循环调用吗?