From d3f11e3b7b86eda4733ece84294d9dc8da1d23bc Mon Sep 17 00:00:00 2001 From: Daniil Rozanov <daniilrozzanov@gmail.com> Date: Wed, 5 Jul 2023 03:11:34 +0300 Subject: Added declaration of connection class with connect and execute members. Created detail and impl folder. Created one example's file --- include/ftp/handshake_params.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/ftp/handshake_params.hpp (limited to 'include/ftp/handshake_params.hpp') diff --git a/include/ftp/handshake_params.hpp b/include/ftp/handshake_params.hpp new file mode 100644 index 0000000..a616c20 --- /dev/null +++ b/include/ftp/handshake_params.hpp @@ -0,0 +1,16 @@ +#ifndef _HANDSHAKE_PARAMS_HPP_ +#define _HANDSHAKE_PARAMS_HPP_ + +#include <string> + +namespace ftp { +class handshake_params +{ + std::string host_; + std::string username_; + std::string password_; + int port; +}; +} // namespace ftp + +#endif // !_HANDSHAKE_PARAMS_HPP_ -- cgit v1.2.3