int WriteFd;
int ReadFd;
URI ServerName;
+ std::string const Prog;
// Private helper functions
bool ReadLine(std::string &Text);
bool Get(const char *Path,FileFd &To,unsigned long long Resume,
Hashes &Hash,bool &Missing, unsigned long long Size);
- explicit RSHConn(URI Srv);
+ RSHConn(std::string const &Prog, URI Srv);
~RSHConn();
};
-#include <apt-pkg/acquire-method.h>
#include "aptmethod.h"
class RSHMethod : public aptMethod
{
- std::string const Prog;
virtual bool Fetch(FetchItem *Itm) APT_OVERRIDE;
virtual bool Configuration(std::string Message) APT_OVERRIDE;
public:
- explicit RSHMethod(std::string const &Prog);
+ explicit RSHMethod(std::string &&Prog);
};
#endif