2021-03-27 00:18:51 +02:00
|
|
|
#ifndef CPR_PROXIES_H
|
|
|
|
#define CPR_PROXIES_H
|
|
|
|
|
|
|
|
#include <initializer_list>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace cpr {
|
|
|
|
class Proxies {
|
|
|
|
public:
|
|
|
|
Proxies() = default;
|
|
|
|
Proxies(const std::initializer_list<std::pair<const std::string, std::string>>& hosts);
|
2023-08-05 21:31:33 +03:00
|
|
|
Proxies(const std::map<std::string, std::string>& hosts);
|
2021-03-27 00:18:51 +02:00
|
|
|
|
|
|
|
bool has(const std::string& protocol) const;
|
|
|
|
const std::string& operator[](const std::string& protocol);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::map<std::string, std::string> hosts_;
|
|
|
|
};
|
|
|
|
} // namespace cpr
|
|
|
|
|
|
|
|
#endif
|