diff options
Diffstat (limited to 'include/ftp/handshake_params.hpp')
-rw-r--r-- | include/ftp/handshake_params.hpp | 16 |
1 files changed, 16 insertions, 0 deletions
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_ |