mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 19:07:35 +08:00
9697f95b8f
This reverts commit 15d999759e
.
26 lines
465 B
C++
26 lines
465 B
C++
#pragma once
|
|
|
|
class http_job : public acl::thread_job
|
|
{
|
|
public:
|
|
http_job(acl::thread_pool& thrpool, const char* url,
|
|
const char* dns_ip, int dns_port);
|
|
|
|
private:
|
|
// 要求类实例必须是动态创建
|
|
~http_job();
|
|
|
|
protected:
|
|
// 基类纯虚函数
|
|
virtual void* run();
|
|
|
|
private:
|
|
acl::thread_pool& thrpool_;
|
|
acl::string url_;
|
|
acl::string dns_ip_;
|
|
int dns_port_;
|
|
|
|
private:
|
|
bool dns_lookup(const char* domain, std::vector<acl::string>& ips);
|
|
};
|