2021-03-26 23:18:51 +01:00
|
|
|
#include "cpr/proxies.h"
|
|
|
|
|
|
|
|
#include <initializer_list>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace cpr {
|
|
|
|
|
2023-08-05 20:31:33 +02:00
|
|
|
Proxies::Proxies(const std::initializer_list<std::pair<const std::string, std::string>>& hosts) : hosts_{hosts} {}
|
|
|
|
Proxies::Proxies(const std::map<std::string, std::string>& hosts) : hosts_{hosts} {}
|
2021-03-26 23:18:51 +01:00
|
|
|
|
|
|
|
bool Proxies::has(const std::string& protocol) const {
|
|
|
|
return hosts_.count(protocol) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& Proxies::operator[](const std::string& protocol) {
|
|
|
|
return hosts_[protocol];
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace cpr
|