mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
18 lines
413 B
C++
18 lines
413 B
C++
|
#include "cpr/proxyauth.h"
|
||
|
|
||
|
namespace cpr {
|
||
|
const char* EncodedAuthentication::GetAuthString() const noexcept {
|
||
|
return auth_string_.c_str();
|
||
|
}
|
||
|
|
||
|
bool ProxyAuthentication::has(const std::string& protocol) const {
|
||
|
return proxyAuth_.count(protocol) > 0;
|
||
|
}
|
||
|
|
||
|
const char* ProxyAuthentication::operator[](const std::string& protocol) {
|
||
|
return proxyAuth_[protocol].GetAuthString();
|
||
|
;
|
||
|
}
|
||
|
|
||
|
} // namespace cpr
|