doc:记录更新。

This commit is contained in:
2025-11-09 12:05:27 +08:00
parent 0ac77752c9
commit 6d088a28ca
3 changed files with 3 additions and 13 deletions

View File

@@ -381,15 +381,6 @@ void SendThread::fbtFlowBack(QSharedPointer<FrameBuffer> frame)
delay_ = msg.mark * BLOCK_LEVEL_MULTIPLE;
}
// constexpr int SendThread::sendDelay()
// {
// // 这里限定,frlay的最大发送速度,目前是 200MB/s。
// constexpr int MAX_SEND_SPD = 1024 * 1024 * 200;
// constexpr double DELAY = (static_cast<double>(CHUNK_BUF_SIZE) / MAX_SEND_SPD) * 1000;
// int minDelay = qMax(static_cast<int>(DELAY), 1);
// return minDelay;
// }
void SendThread::run()
{
// task's file shoule be already opened.

View File

@@ -50,9 +50,6 @@ public:
void setTask(const QSharedPointer<DoTransTask>& task);
void fbtFlowBack(QSharedPointer<FrameBuffer> frame);
// private:
// static constexpr int sendDelay();
private:
bool isSuccess_{false};
ClientCore* cliCore_;