mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
9298065cef
CPR has features disabled and PCRE is fully disabled until updated to new code.
24 lines
603 B
C++
24 lines
603 B
C++
#ifndef CPR_RESOLVE_H
|
|
#define CPR_RESOLVE_H
|
|
|
|
#include <string>
|
|
#include <set>
|
|
|
|
namespace cpr {
|
|
class Resolve {
|
|
public:
|
|
std::string host;
|
|
std::string addr;
|
|
std::set<uint16_t> ports;
|
|
|
|
Resolve(const std::string& host_param, const std::string& addr_param, const std::set<uint16_t>& ports_param = std::set<uint16_t>{80U, 443U}): host(host_param), addr(addr_param), ports(ports_param) {
|
|
if (this->ports.empty()) {
|
|
this->ports.insert(80U);
|
|
this->ports.insert(443U);
|
|
}
|
|
}
|
|
};
|
|
} // namespace cpr
|
|
|
|
#endif
|