From a055f6714fd06aa3b633b1bc44a8dbf42a0eedb0 Mon Sep 17 00:00:00 2001 From: Samuel Mendoza-Jonas Date: Thu, 27 Oct 2016 14:56:05 +1100 Subject: Support HTTP(S) proxies when downloading resources Allow the user to specify a HTTP and HTTPS proxy server. The discover server will set the http_proxy and https_proxy environment variables, enabling the proxy servers for any further HTTP(S) requests. Signed-off-by: Samuel Mendoza-Jonas --- discover/platform.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'discover/platform.c') diff --git a/discover/platform.c b/discover/platform.c index 93cd057..cc6306f 100644 --- a/discover/platform.c +++ b/discover/platform.c @@ -87,6 +87,11 @@ static void dump_config(struct config *config) if (config->manual_console) pb_log(" (Manually set)\n"); + if (config->http_proxy) + pb_log(" HTTP Proxy: %s\n", config->http_proxy); + if (config->https_proxy) + pb_log(" HTTPS Proxy: %s\n", config->https_proxy); + pb_log(" language: %s\n", config->lang ?: ""); } @@ -121,6 +126,8 @@ void config_set_defaults(struct config *config) config->network.n_interfaces = 0; config->network.dns_servers = NULL; config->network.n_dns_servers = 0; + config->http_proxy = NULL; + config->https_proxy = NULL; config->safe_mode = false; config->allow_writes = true; config->disable_snapshots = false; -- cgit v1.2.1