mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-17 23:57:14 +02:00
Reinstate CPR using system library.
This commit is contained in:
19
vendor/CPR/include/cpr/limit_rate.h
vendored
Normal file
19
vendor/CPR/include/cpr/limit_rate.h
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
#ifndef CPR_SPEED_LIMIT_H
|
||||
#define CPR_SPEED_LIMIT_H
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace cpr {
|
||||
|
||||
class LimitRate {
|
||||
public:
|
||||
LimitRate(const std::int64_t downrate, const std::int64_t uprate)
|
||||
: downrate(downrate), uprate(uprate) {}
|
||||
|
||||
std::int64_t downrate = 0;
|
||||
std::int64_t uprate = 0;
|
||||
};
|
||||
|
||||
} // namespace cpr
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user