- Added a ::send method to CmdSync to perform the transfer.  Note that this
  does not yet include any TLS.
This commit is contained in:
Paul Beckingham 2012-10-06 09:07:30 -04:00
parent 5a9810a423
commit e7e34b7148
3 changed files with 46 additions and 1 deletions

View file

@ -31,12 +31,16 @@
#include <string>
#include <Command.h>
#include <Msg.h>
class CmdSync : public Command
{
public:
CmdSync ();
int execute (std::string&);
private:
bool send (const std::string&, const Msg&, Msg&);
};
#endif