20INLINE
void HTTPClient::
21set_try_all_direct(
bool try_all_direct) {
22 _try_all_direct = try_all_direct;
29INLINE
bool HTTPClient::
30get_try_all_direct()
const {
31 return _try_all_direct;
40INLINE
void HTTPClient::
41set_client_certificate_filename(
const Filename &filename) {
42 _client_certificate_filename = filename;
43 _client_certificate_pem = std::string();
44 unload_client_certificate();
53INLINE
void HTTPClient::
54set_client_certificate_pem(
const std::string &pem) {
55 _client_certificate_pem = pem;
56 _client_certificate_filename =
Filename();
57 unload_client_certificate();
64INLINE
void HTTPClient::
65set_client_certificate_passphrase(
const std::string &passphrase) {
66 _client_certificate_passphrase = passphrase;
67 unload_client_certificate();
75INLINE
void HTTPClient::
76set_http_version(HTTPEnum::HTTPVersion version) {
77 _http_version = version;
84INLINE HTTPEnum::HTTPVersion HTTPClient::
85get_http_version()
const {
96INLINE
void HTTPClient::
97set_verify_ssl(HTTPClient::VerifySSL verify_ssl) {
98 _verify_ssl = verify_ssl;
105INLINE HTTPClient::VerifySSL HTTPClient::
106get_verify_ssl()
const {
118INLINE
void HTTPClient::
119set_cipher_list(
const std::string &cipher_list) {
120 _cipher_list = cipher_list;
127INLINE
const std::string &HTTPClient::
128get_cipher_list()
const {
137INLINE std::string HTTPClient::
138base64_encode(
const std::string &s) {
139 return HTTPAuthorization::base64_encode(s);
147INLINE std::string HTTPClient::
148base64_decode(
const std::string &s) {
149 return HTTPAuthorization::base64_decode(s);
The name of a file, such as a texture file or an Egg file.