blob: b8cc8da1eb3b1783682cf468b5ec8465b5a25871 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef APT_PRIVATE_DOWNLOAD_H
#define APT_PRIVATE_DOWNLOAD_H
#include <apt-pkg/acquire.h>
bool CheckAuth(pkgAcquire& Fetcher, bool const PromptUser);
bool AcquireRun(pkgAcquire &Fetcher, int const PulseInterval, bool * const Failure, bool * const TransientNetworkFailure);
#endif
|