Home
last modified time | relevance | path

Searched refs:m_downloadRate (Results 1 – 7 of 7) sorted by relevance

/dports/news/nzbget/nzbget-21.1/daemon/remote/
H A DMessageBase.h138 int32 m_downloadRate; // Current download speed, in Bytes pro Second member
266 int32 m_downloadRate; // Speed limit, in Bytes pro Second member
H A DRemoteClient.cpp526 if (ntohl(ListResponse.m_downloadRate) > 0 && in RequestServerList()
531 int64 remain_sec = (int64)(remaining / ntohl(ListResponse.m_downloadRate)); in RequestServerList()
538 printf("Current download rate: %s\n", *Util::FormatSpeed(ntohl(ListResponse.m_downloadRate))); in RequestServerList()
718 SetDownloadRateRequest.m_downloadRate = htonl(rate); in RequestServerSetDownloadRate()
H A DBinRpc.cpp345 g_WorkState->SetSpeedLimit(ntohl(SetDownloadRequest.m_downloadRate)); in Execute()
674 ListResponse.m_downloadRate = htonl(g_StatMeter->CalcCurrentDownloadSpeed()); in Execute()
/dports/news/nzbget/nzbget-21.1/daemon/main/
H A DWorkState.h64 int m_downloadRate = 0; variable
H A DOptions.h303 int GetDownloadRate() const { return m_downloadRate; } in GetDownloadRate()
436 int m_downloadRate = 0; variable
H A DOptions.cpp695 m_downloadRate = ParseIntValue(OPTION_DOWNLOADRATE, 10) * 1024; in InitOptions()
/dports/news/nzbget/nzbget-21.1/daemon/frontend/
H A DFrontend.cpp284 m_currentDownloadSpeed = ntohl(ListResponse.m_downloadRate); in RequestFileList()