From e9957b2d5326b0bdce0e5ca314fde99e213f53d8 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 23 Jul 2019 17:33:41 +0100 Subject: [PATCH] dgit: url_fetch: Honour new CurlOpts No functional change with the existing callers. Signed-off-by: Ian Jackson --- dgit | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dgit b/dgit index 714d6b44..0f801a3d 100755 --- a/dgit +++ b/dgit @@ -1196,6 +1196,7 @@ sub url_fetch ($;@) { my ($url, %xopts) = @_; # Ok404 => 1 means give undef for 404 # AccessBase => 'archive-query' (eg) + # CurlOpts => { key => value } use WWW::Curl::Easy; @@ -1212,6 +1213,10 @@ sub url_fetch ($;@) { $setopt->(CURLOPT_NOSIGNAL, 1); $setopt->(CURLOPT_WRITEDATA, \$response_body); + my $xcurlopts = $xopts{CurlOpts} // { }; + keys %$xcurlopts; + while (my ($k,$v) = each %$xcurlopts) { $setopt->($k,$v); } + if ($xopts{AccessBase} && $url =~ m#^https://([-.0-9a-z]+)/#) { foreach my $k ("$xopts{AccessBase}-tls-key", "$xopts{AccessBase}-tls-curl-ca-args") { -- 2.30.2