diff options
author | Julian Andres Klode <jak@debian.org> | 2017-10-21 15:44:43 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2017-10-22 18:52:16 +0200 |
commit | 1a76517470ebc2dd3f96e39ebe6f3706d6dd78da (patch) | |
tree | 93b8d79678ba890d53d108c26118ed0807264367 /apt-pkg/acquire-method.h | |
parent | 404dececf913d3c09368a73ca00aa8172dbf6865 (diff) |
Run Proxy-Auto-Detect script from main process
This avoids running the Proxy-Auto-Detect script inside the
untrusted (well, less trusted for now) sandbox. This will allow
us to restrict the http method from fork()ing or exec()ing via
seccomp.
Diffstat (limited to 'apt-pkg/acquire-method.h')
-rw-r--r-- | apt-pkg/acquire-method.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/apt-pkg/acquire-method.h b/apt-pkg/acquire-method.h index cab2bda40..2de9cf5c2 100644 --- a/apt-pkg/acquire-method.h +++ b/apt-pkg/acquire-method.h @@ -55,10 +55,14 @@ class pkgAcqMethod FetchItem(); virtual ~FetchItem(); + std::string Proxy(); // For internal use only. + void Proxy(std::string const &Proxy) APT_HIDDEN; + private: - void * const d; + struct Private; + Private *const d; }; - + struct FetchResult { HashStringList Hashes; |