aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/src/abstract_http_client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/epee/src/abstract_http_client.cpp')
-rw-r--r--contrib/epee/src/abstract_http_client.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/epee/src/abstract_http_client.cpp b/contrib/epee/src/abstract_http_client.cpp
index 98b5b67d9..540917873 100644
--- a/contrib/epee/src/abstract_http_client.cpp
+++ b/contrib/epee/src/abstract_http_client.cpp
@@ -137,6 +137,11 @@ namespace http
set_server(std::move(parsed.host), std::to_string(parsed.port), std::move(user), std::move(ssl_options));
return true;
}
+
+ bool epee::net_utils::http::abstract_http_client::set_proxy(const std::string& address)
+ {
+ return false;
+ }
}
}
}