20 INLINE
void HTTPClient::
21 set_try_all_direct(
bool try_all_direct) {
22 _try_all_direct = try_all_direct;
29 INLINE
bool HTTPClient::
30 get_try_all_direct()
const {
31 return _try_all_direct;
40 INLINE
void HTTPClient::
41 set_client_certificate_filename(
const Filename &filename) {
42 _client_certificate_filename = filename;
43 _client_certificate_pem = std::string();
44 unload_client_certificate();
53 INLINE
void HTTPClient::
54 set_client_certificate_pem(
const std::string &pem) {
55 _client_certificate_pem = pem;
56 _client_certificate_filename =
Filename();
57 unload_client_certificate();
64 INLINE
void HTTPClient::
65 set_client_certificate_passphrase(
const std::string &passphrase) {
66 _client_certificate_passphrase = passphrase;
67 unload_client_certificate();
75 INLINE
void HTTPClient::
76 set_http_version(HTTPEnum::HTTPVersion version) {
77 _http_version = version;
84 INLINE HTTPEnum::HTTPVersion HTTPClient::
85 get_http_version()
const {
96 INLINE
void HTTPClient::
97 set_verify_ssl(HTTPClient::VerifySSL verify_ssl) {
98 _verify_ssl = verify_ssl;
105 INLINE HTTPClient::VerifySSL HTTPClient::
106 get_verify_ssl()
const {
118 INLINE
void HTTPClient::
119 set_cipher_list(
const std::string &cipher_list) {
120 _cipher_list = cipher_list;
127 INLINE
const std::string &HTTPClient::
128 get_cipher_list()
const {
137 INLINE std::string HTTPClient::
138 base64_encode(
const std::string &s) {
139 return HTTPAuthorization::base64_encode(s);
147 INLINE std::string HTTPClient::
148 base64_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.