diff options
author | Michael Vogt <mvo@debian.org> | 2014-05-30 14:47:56 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-06-02 08:53:09 +0200 |
commit | a3f1d60cb75ab83f63a52a43c056a4752c8fdeb2 (patch) | |
tree | 00acd57805d51fe2422fe6b0d5bc4fcbaca6247e /apt-private/private-download.h | |
parent | 7adaab0430308a17f1db279f0ebbed8068dd4308 (diff) |
Show unauthenticated warning for source packages as well
This will show the same unauthenticated warning for source packages
as for binary packages and will not download a source package if
it is unauthenticated. This can be overridden with
--allow-unauthenticated
Closes: #749795
Diffstat (limited to 'apt-private/private-download.h')
-rw-r--r-- | apt-private/private-download.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apt-private/private-download.h b/apt-private/private-download.h index a108aa531..a90ac7eaa 100644 --- a/apt-private/private-download.h +++ b/apt-private/private-download.h @@ -5,7 +5,13 @@ class pkgAcquire; +// Check if all files in the fetcher are authenticated APT_PUBLIC bool CheckAuth(pkgAcquire& Fetcher, bool const PromptUser); + +// show a authentication warning prompt and return true if the system +// should continue +APT_PUBLIC bool AuthPrompt(std::string UntrustedList, bool const PromptUser); + APT_PUBLIC bool AcquireRun(pkgAcquire &Fetcher, int const PulseInterval, bool * const Failure, bool * const TransientNetworkFailure); #endif |