-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhxxp.cpp
75 lines (61 loc) · 1.36 KB
/
hxxp.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include "hxxp.h"
//////////////////////////////////////////////////////////////////////////
void curlpp::hxxp::globalInit()
{
curl_global_init(CURL_GLOBAL_ALL);
}
void curlpp::hxxp::globalClean()
{
curl_global_cleanup();
}
curlpp::result curlpp::hxxp::get()
{
return m_impl.get(m_net_data);
}
curlpp::result curlpp::hxxp::post()
{
return m_impl.post(m_net_data);
}
curlpp::result curlpp::hxxp::download() const
{
return m_impl.download(m_net_data);
}
curlpp::hxxp& curlpp::hxxp::headers(const std::vector<std::string>& val)
{
m_net_data.headers(val);
return *this;
}
curlpp::hxxp& curlpp::hxxp::outfile_name(const std::string& val)
{
m_net_data.outfile_name(val);
return *this;
}
curlpp::hxxp& curlpp::hxxp::add_post_params(const std::string& key, const std::string& value)
{
m_net_data.post_params_write().add_params(key, value);
return *this;
}
curlpp::hxxp& curlpp::hxxp::url(const std::string& val)
{
m_net_data.url(val);
return *this;
}
curlpp::hxxp& curlpp::hxxp::timeout(int val)
{
m_net_data.timeout(val);
return *this;
}
curlpp::hxxp& curlpp::hxxp::add_header(const std::string& val)
{
m_net_data.append_header(val);
return *this;
}
curlpp::hxxp& curlpp::hxxp::download_path(const std::string& val)
{
m_net_data.download_path(val);
return *this;
}
curlpp::hxxp& curlpp::hxxp::md5(const std::string &val) {
m_net_data.md5(val);
return *this;
}