/* * File: SFTP.h * Author: twarren * * Created on April 6, 2015, 2:22 PM */ #ifndef SFTP_H #define SFTP_H #define LIBSSH_STATIC 1 #include "common.h" // libssh2 includes #include #include // Socket includes #include #include #include class SFTP { public: SFTP(const char *host, string user, string pass); ~SFTP(); private: LIBSSH2_SESSION *session; LIBSSH2_SFTP *sftp_session; unsigned long hostaddr; }; #endif /* SFTP_H */